From c274475635d410c0e9f812e71d20183cb923cd6b Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sun, 18 Feb 2024 13:22:42 +0100 Subject: misc updates MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- cat-nonbackups-with-head | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 cat-nonbackups-with-head (limited to 'cat-nonbackups-with-head') diff --git a/cat-nonbackups-with-head b/cat-nonbackups-with-head new file mode 100755 index 0000000..426a50f --- /dev/null +++ b/cat-nonbackups-with-head @@ -0,0 +1,18 @@ +#!/bin/sh +set -e +good_filename () { + test -n "$(printf '%s\n' "$1" | grep -v '~$' || :)" || return 1 + test -n "$(printf '%s\n' "$1" | grep -v '\.swo$' || :)" || return 1 + test -n "$(printf '%s\n' "$1" | grep -v '\.swp$' || :)" || return 1 + test -n "$(printf '%s\n' "$1" | grep -v '\.bak$' || :)" || return 1 + 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 + samedrun "$0" cat-with-head -- "$file" + fi +done -- cgit v1.2.3-70-g09d2