Skip to content

Instantly share code, notes, and snippets.

@ctengiz
Created April 1, 2019 16:59
Show Gist options
  • Select an option

  • Save ctengiz/692b353f80f16bed895bacf530e23a58 to your computer and use it in GitHub Desktop.

Select an option

Save ctengiz/692b353f80f16bed895bacf530e23a58 to your computer and use it in GitHub Desktop.
# du summarize and sort
du -sh ./* | sort -h
# Delete files older than 365 days
find . -type f -mtime +365 -maxdepth 1 -exec rm {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment