fabi.s

Generation

linuxFri, 25 Nov 2022

move all mp3 files from my download folder into my music folder, excluse files that have a shorter duration than 1 minute

find /home/abdelrahman/Downloads/ -name '*.mp3' -exec ffprobe -i {} -show_entries format=duration -v quiet -of csv="p=0" > /tmp/test.txt \; -exec bash -c 'if [ $(cat /tmp/test.txt) > 60 ]; then echo $(cat /tmp/test.txt) && mv {} /home/abdelrahman/Music/; fi' \;

Questions about programming?Chat with your personal AI assistant