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.
17 lines
548 B
17 lines
548 B
#!/bin/bash
|
|
# HEADER: ===========================================================
|
|
# HEADER: This file is automanaged by puppet
|
|
# HEADER: While it can still be managed manually, it is definitely not recommended.
|
|
# HEADER: Any manual changes to this file run the risk of being overwritten!
|
|
# HEADER: ===========================================================
|
|
|
|
if [ "$1" = "" ]
|
|
then
|
|
echo -e "Directory: \c"
|
|
pwd
|
|
ls -alFh --color=always |more
|
|
else
|
|
echo "Directory of: $1*"
|
|
ls -aldFh --color=always $1* |more
|
|
fi
|
|
|
|
|