Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ここで私がしようとしていることは、(wine を介して) µtorrent を使用して単一または複数の torrent を開くことができるスクリプトの一部を作成することです。
次のように Wine パスを引数に追加する必要があります (ループは明らかに機能していません)。
for i in "$@"; do open="Z:/$(pwd)/$i" done wine utorrent "$open"
私は配列を使用します:
args=() pwd=$(pwd) for i; do args+=("z:/$pwd/$i") done wine utorrent "${args[@]}"
bashforループでは、in ...句を省略すると"$@"、デフォルトで反復されます。
for
in ...
"$@"