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.

27 lines
452 B

4 years ago
echo "List Files and Directories with / Character at the end"
4 years ago
echo "-----------------------------"
4 years ago
ls -F / | head -5
4 years ago
echo ""
echo "Recursively list Sub-Directories"
echo "-----------------------------"
4 years ago
ls -R / | head -35
4 years ago
echo ""
echo "Sort Files by File Size"
echo "-----------------------------"
4 years ago
ls -lS /usr/share | head -5
4 years ago
echo ""
echo "Display UID and GID of Files"
echo "-----------------------------"
4 years ago
ls -n /usr/share | head -5
4 years ago
echo ""