Skip to content

Aravindh.net

oneliners

Sort a directory by human readable size

du -hs * | sort -hr

Flatten a given directory by copying all files and creating a new directory with only the files

find /Users/Aravindh.Sampathkumar/Pictures/icloud_backup  -type f -exec cp {} /Users/Aravindh.Sampathkumar/Pictures/icloud_flat_photos \;