moodLearning Wiki

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
linux-commandline-tips [2020/07/15 09:29]
serbizadmin [Compression]
linux-commandline-tips [2020/08/29 23:47] (current)
serbizadmin [Find Stuff]
Line 15: Line 15:
 find . -type f -printf '%T@ %P\n' | sort -n | awk '{print $2}' find . -type f -printf '%T@ %P\n' | sort -n | awk '{print $2}'
 </code> </code>
 +  * show files greater than 1G
 +<code>
 +du -h * | grep '^\s*[0-9\.]\+G'
 +</code>
 +Change 'G' to 'M' for MB output.
 ====== Differences====== ====== Differences======
   * between files, showing side by side   * between files, showing side by side