notes/os/shells/art-list-too-long.txt
Ihar Hancharenka 5dff80e88e first
2023-03-27 16:52:17 +03:00

8 строки
434 B
Plaintext

http://mywiki.wooledge.org/BashFAQ/095
https://unix.stackexchange.com/questions/128559/solving-mv-argument-list-too-long
https://stackoverflow.com/questions/11289551/argument-list-too-long-error-for-rm-cp-mv-commands
https://www.cyberciti.biz/faq/argument-list-too-long-error-solution/
printf '%s\0' *.txt | xargs -0 echo
printf '%s\0' *.txt | xargs -0 mv -t ..
find . -name '*.txt' -maxdepth 1 -exec printf '[%s]\n' {} +