All public logs
Combined display of all available logs of XPUB & Lens-Based wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 18:33, 20 January 2026 Manetta talk contribs created page Exploring our file systems (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...")