aboutsummaryrefslogtreecommitdiffstats
path: root/cat-nonbackups
diff options
context:
space:
mode:
Diffstat (limited to 'cat-nonbackups')
-rwxr-xr-xcat-nonbackups3
1 files changed, 3 insertions, 0 deletions
diff --git a/cat-nonbackups b/cat-nonbackups
index 387cf7a..2031eab 100755
--- a/cat-nonbackups
+++ b/cat-nonbackups
@@ -8,6 +8,9 @@ good_filename () {
test -n "$(printf '%s\n' "$1" | grep -v '^\.#' || :)" || return 1
test -n "$(printf '%s\n' "$1" | grep -v '^#' || :)" || return 1
}
+if test "$1" = "--"; then
+ shift 1
+fi
for file; do
if good_filename "$file" >/dev/null 2>/dev/null; then
cat -- "$file"