Our CAD tools run on the Red Hat Enterprise Linux operating system.
cd mkdir ls ls -l ls -la ls -ltr rm # delete a file rmdir # delete a directory du -s -m * # size of files/directories not beginning with "." du -s -m .[a-zA-Z0-9]* # size of files/directories beginning with "." man du # manual page with more informationUsing du -h instead of -m gives results with variable units.
2018/03/12 Written 2025/01/14 Minor edits 2025/01/27 Added a few commands