Exploring our file systems: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

21 April 2026

27 January 2026

21 January 2026

20 January 2026

  • curprev 18:3318:33, 20 January 2026Manetta talk contribs 495 bytes +495 Created page with "==our file systems== understanding the limits of our file system $ df -h ==exercises== Navigating our file systems $ man find ===Count how many PDFs you have in the home folder on your computer=== $ find ~ | grep .pdf > pdfs.txt $ cat pdfs.txt | wc -l ===same for jpgs!=== as above, but with .jpg ===count how many folders you have on your computer=== $ sudo su $ cd / $ find -type d > /home/mb/folders.txt $ cat /home/mb/folders.txt | wc -l ===same for..."