Last active
October 18, 2019 16:26
-
-
Save karlcow/8abaa0f090dd784e6114de17a058afc7 to your computer and use it in GitHub Desktop.
listing files with date, size and path
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
# find .: search here | |
# -type f: file only | |
# -print: output format | |
# '%TY-%Tm-%Td: date iso | |
# %s : file size | |
# %p\n' : path and return | |
# |: pipe to another command | |
# column -t: the results are aligned | |
find . -type f -printf '%TY-%Tm-%Td %s %p\n' | column -t |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
oh coool