こんな感じだと怒られます。
mv [条件] [移動先]
bash: /bin/rm: Argument list too long
find と xargs を組み合わせると大丈夫。
find [ディレクトリ] -name [条件] -print0 | xargs -0 -I{} mv {} [移動先]
Go to list of users who liked
More than 5 years have passed since last update.
こんな感じだと怒られます。
mv [条件] [移動先]
bash: /bin/rm: Argument list too long
find と xargs を組み合わせると大丈夫。
find [ディレクトリ] -name [条件] -print0 | xargs -0 -I{} mv {} [移動先]
Register as a new user and use Qiita more conveniently
Go to list of users who liked