Skip to content

Instantly share code, notes, and snippets.

@kkarad
Last active April 18, 2017 16:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kkarad/9a6869a35fbe60fa6f28515e44c10ca0 to your computer and use it in GitHub Desktop.
Save kkarad/9a6869a35fbe60fa6f28515e44c10ca0 to your computer and use it in GitHub Desktop.
# for every directory run multiple commands
find . -maxdepth 1 -type d -exec sh -c "cd {} && mvn clean && cd -" \;
#when disk is out of space identify directory which occupies most space
df -h
du -s * | sort -r -n | head -n 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment