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.
5つのフォルダー(fld1、fld2、fld3、fld4、fld5)があり、bashコマンドを使用して5つのフォルダーすべてにpippo.txtなどのファイルを自動的にコピーしたいと思います。誰か助けてもらえますか?
前もって感謝します
これを試して:
for i in fld[1-5] do cp pippo.txt $i done
またはこれ:
seq 5 | xargs -n1 -I{} cp pippo.txt fld{}