Created
May 4, 2015 15:13
-
-
Save wjn/edaedd1adb939c0ef98f to your computer and use it in GitHub Desktop.
Helpful Linux 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
**Find Files by Date** | |
- `ll | grep '2014-12-27’` | |
- `ll | grep '2015-04-28’` | |
**Find Compressed Files** | |
- `find / -type f -exec file {} + | grep compress > compressed_files.txt` (prints to report file) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment