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
417 B
27 lines
417 B
4 years ago
|
echo "List Files and Directories with ‘/’ Character at the end"
|
||
|
echo "-----------------------------"
|
||
|
ls -F /
|
||
|
echo ""
|
||
|
|
||
|
|
||
|
echo "Recursively list Sub-Directories"
|
||
|
echo "-----------------------------"
|
||
|
|
||
|
ls -R /
|
||
|
echo ""
|
||
|
|
||
|
|
||
|
echo "Sort Files by File Size"
|
||
|
echo "-----------------------------"
|
||
|
|
||
|
|
||
|
ls -lS /usr/share
|
||
|
echo ""
|
||
|
|
||
|
echo "Display UID and GID of Files"
|
||
|
echo "-----------------------------"
|
||
|
|
||
|
ls -n /usr/share
|
||
|
echo ""
|
||
|
|