LoginSignup
18
9

More than 5 years have passed since last update.

大量にファイルを移動/削除しようとして、Argument list too longで怒られた場合の備忘録

Posted at

こんな感じだと怒られます。

mv [条件] [移動先]
bash: /bin/rm: Argument list too long

find と xargs を組み合わせると大丈夫。

find [ディレクトリ] -name [条件] -print0 | xargs -0 -I{} mv {} [移動先]
18
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
18
9