Last active
May 2, 2020 21:38
-
-
Save Haisum92/c6a646d69c0191b81b1ee92131cbe290 to your computer and use it in GitHub Desktop.
Linux Commands #old-date-files #process-list
This file contains hidden or 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
Finding and Deleting old files | |
find . -maxdepth 1 -mmin +10 -type f | |
find . -maxdepth 1 -mmin +10 -type f -delete | |
Process list Commands | |
ps -ef | wc -l | |
ps -ef | |
ps -ef | grep ffmpeg | wc -l | |
/usr/local/android-studio/bin/./studio.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment