Skip to content

Instantly share code, notes, and snippets.

@jdeathe
Last active October 2, 2018 10:14
Show Gist options
  • Save jdeathe/3f34b0e004f8e2275210273466fab00c to your computer and use it in GitHub Desktop.
Save jdeathe/3f34b0e004f8e2275210273466fab00c to your computer and use it in GitHub Desktop.
Linux / Simple File List for Review

Generate a File Listing for Review

Fields

  • Last Modified
  • Size (bytes)
  • Relative Path

Command

Replace {{search-path}} with the path to search.

find "{{search-path}}" \
  -type f \
  -printf '%TY-%Tm-%Td %TH:%TM, %s, %P\n'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment