🌱 101 Bash Commands and Tips for Beginners to Experts

Source

Take all files with -fs8 and move them to the compressed directory

find . -name "*-fs8*" -depth 1 | while read line; do mv "$line" compressed/${line}; done
Made by Brandon . If you find this project useful you can donate.