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.
こんにちは、たとえば配列のような多くの異なる mp3 を SOX に送信したいと考えています。
sox 1.mp3 2.mp3 N.mp3 out.mp3 sox num1.mp3 num2.mp3 numN.mp3 out2.mp3 sox n1.mp3 n2.mp3 nN.mp3 out3.mp3
それらすべてを一度に送信するにはどうすればよいですか?それともできないでしょうか?
bash を使用している場合:
for f in *.mp3; { sox $f out$f; }
短いリストの場合:
sox {1,2,N}.mp3 out.mp3 sox num{1,2,N}.mp3 out2.mp3 sox n{1,2,N}.mp3 out3.mp3
範囲の場合:
sox File{1..42}.mp3 out4.mp3