Last active
December 12, 2018 10:29
-
-
Save Rodrigora/de37885d01ac769b8739c3febeb4dd40 to your computer and use it in GitHub Desktop.
Unix commands
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kill -9 $(ps aux | grep spring | awk '{print $2}' | head -n 1) | |
kill -9 $(ps aux | grep webkit | awk '{print $2}' | head -n 1) | |
# Find files and remote by pattern | |
find /path/to/directory -type f -name '*[0-9]x[0-9]*[0-9]x[0-9]*.jpg' -delete |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment