-
Notifications
You must be signed in to change notification settings - Fork 0
/
DIR
executable file
·47 lines (42 loc) · 974 Bytes
/
DIR
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/bin/bash
function usage
{
cat <<- EOF >&2
Usage: $(basename $0) [DOS flags] directory or directories
Where:
/D sort by columns
/H show help for this shell script
/N show long listing format with filenames on right
/OD sort by oldest to newest
/O-D sort by newest to oldest
/P pause after each screenful of information
/Q show owner of the file
/S recursive listing
/W use wide listing format
EOF
exit 1
}
postcmd=""
flags=""
while [ $# -gt 0 ]
do
case $1 in
/D ) flags="$flags -x" ;;
/H ) usage ;;
/[NQW] ) flags="$flags -l" ;;
/OD ) flags="$flags -rt" ;;
/O-D ) flags="$flags -t" ;;
/P ) postcmd="more" ;;
/S ) flags="$flags -s" ;;
*) # Unknown flag: probably a DIR specifier break;
# so let's get out of the while loop.
esac
shift # Processed flag; let's see if there's another
done
if [ ! -z "$postcmd" ]
then
ls $flags "$@" | $postcmd
else
ls $flags "$@"
fi
exit 0