find log files
find . -name '*.log'
find / -name '*.log'
find all files with special characters in the file names
find /home/majestaetix/content/contemporary/ -name "*[<>:\\|?*~]*" > /home/majestaetix/__0_WORK/_cleanup/clean_filex.txt
find something else
find /home/majestaetix -name '*.*' > /tmp/majestaetix_02.txt
findĀ az_*.jpg and remove them
find . -type f -name "az_*.jpg" -exec rm -f {} \;
lsof | grep ' icecast ' | awk '{print $NF}' | sort | wc -l
Remove files by date :
rm `ls -l | grep 'Jun 22 16:34' | tr -s ' ' | cut -d ' ' -f9`