You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
451 B
26 lines
451 B
echo "List Files and Directories with / Character at the end"
|
|
echo "-----------------------------"
|
|
ls -F / | head -5
|
|
echo ""
|
|
|
|
|
|
echo "Recursively list Sub-Directories"
|
|
echo "-----------------------------"
|
|
|
|
ls -R / | head -5
|
|
echo ""
|
|
|
|
|
|
echo "Sort Files by File Size"
|
|
echo "-----------------------------"
|
|
|
|
|
|
ls -lS /usr/share | head -5
|
|
echo ""
|
|
|
|
echo "Display UID and GID of Files"
|
|
echo "-----------------------------"
|
|
|
|
ls -n /usr/share | head -5
|
|
echo ""
|
|
|
|
|