~dricottone/my-utils

ref: b29d2b4a9bcb2e3b35c41e5dbb43d6e031999a06 my-utils/ctdir -rwxr-xr-x 735 bytes
b29d2b4aDominic Ricottone Restarting with fresh commit history 5 years ago
                                                                                
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
#!/bin/sh

# ctdir
# =====
# Usage: ctdir TARGET [OPTIONS]
#
# Count entries in a directory

help_msg() {
  cat <<-EOF
	Count entries in a target directory
	Usage: ctdir TARGET [OPTIONS]
	Options:
	 -a, --all             do not ignore entries starting with .
	 -A, --almost-all      do not list implied . and ..
	 -B, --ignore-backups  do not list implied entries ending with ~
	 -r, --recursive       list subdirectories recursively
	 -h, --help            print this message
	EOF
  exit 1
}
err_msg() {
  (>&2 echo "$1")
  exit 1
}

for i in "$@"; do
  case $i in
    -h|--help) help_msg;;
  esac
done

LISTING=$(ls -1 "$@" 2>/dev/null | wc -l)
if [ "$LISTING" -eq 0 ]; then
  err_msg "No files as '${@}'"
else
  echo "$LISTING"
fi