aboutsummaryrefslogtreecommitdiff
path: root/bin/cf
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-11-25 17:25:48 +1300
committerTom Ryder <tom@sanctum.geek.nz>2016-11-25 17:25:48 +1300
commit7021f36c94bc65a6164b559f97d9e8438bdccfd9 (patch)
tree06140233b7ca684d439c94de591e5ca681205208 /bin/cf
parentMerge branches 'freebsd' and 'openbsd' (diff)
downloaddotfiles-7021f36c94bc65a6164b559f97d9e8438bdccfd9.tar.gz
dotfiles-7021f36c94bc65a6164b559f97d9e8438bdccfd9.zip
Simplify cf(1df) and cfr(1df)
It turns out `-exec foo {} +` is in fact POSIX behaviour (since SUSv3 as far as I can tell).
Diffstat (limited to 'bin/cf')
-rwxr-xr-xbin/cf25
1 files changed, 2 insertions, 23 deletions
diff --git a/bin/cf b/bin/cf
index d245fec1..2076ddc2 100755
--- a/bin/cf
+++ b/bin/cf
@@ -2,23 +2,6 @@
# Count entries in a given set of directories
self=cf
-# Parse options out
-while getopts 'o' opt ; do
- case $opt in
-
- # Print only the count, not the filename
- o) only=1 ;;
-
- # Unknown option
- \?)
- printf >&2 '%s: Unknown option %s\n' \
- "$self" "$opt"
- exit 2
- ;;
- esac
-done
-shift "$((OPTIND-1))"
-
# Iterate over remaining non-option arguments (directories); default to current
# directory if none given
for dir in "${@:-.}" ; do
@@ -43,12 +26,8 @@ for dir in "${@:-.}" ; do
[ "$1" = "$dir"/. ] && shift
[ "$1" = "$dir"/.. ] && shift
- # Print either just the count, or the count and the dirname
- if [ -n "$only" ] ; then
- printf '%u\n' "$#"
- else
- printf '%u\t%s\n' "$#" "$dir"
- fi
+ # Print the count and the dirname
+ printf '%u\t%s\n' "$#" "$dir"
done
# Exit non-zero if a non-directory was given as an argument