Skip to content

Instantly share code, notes, and snippets.

@Haisum92
Last active May 2, 2020 21:38
Show Gist options
  • Save Haisum92/c6a646d69c0191b81b1ee92131cbe290 to your computer and use it in GitHub Desktop.
Save Haisum92/c6a646d69c0191b81b1ee92131cbe290 to your computer and use it in GitHub Desktop.
Linux Commands #old-date-files #process-list
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