aboutsummaryrefslogtreecommitdiff
path: root/bin/tl
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-08-03 13:42:41 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-08-03 13:42:41 +1200
commitbec8d42b52d625a8dfd58012fd4e9b7e3a34ca31 (patch)
treeeff492fac3e94d7d6905e192f47133118e65ac2d /bin/tl
parentAdd missing char in default expansion to spr(1) (diff)
downloaddotfiles-bec8d42b52d625a8dfd58012fd4e9b7e3a34ca31.tar.gz
dotfiles-bec8d42b52d625a8dfd58012fd4e9b7e3a34ca31.zip
Tidy tl(1), make POSIX sh
Diffstat (limited to 'bin/tl')
-rwxr-xr-xbin/tl40
1 files changed, 7 insertions, 33 deletions
diff --git a/bin/tl b/bin/tl
index a341a3bb..f3f44abb 100755
--- a/bin/tl
+++ b/bin/tl
@@ -1,37 +1,15 @@
-#!/usr/bin/env bash
+#!/bin/sh
# Tag lines from files or stdin with a string prefix or suffix.
-self=tl
-
-# Define usage function
-usage() {
- printf 'USAGE: %s [-h] [-p PREFIX] [-s SUFFIX] [--] [FILE1 FILE2 ...]\n' "$self"
-}
-
-# Start with empty prefix/suffix, or use the environment variables
-prefix=$TL_PREFIX
-suffix=$TL_SUFFIX
# Parse options out, give help if necessary
while getopts 'hp:s:' opt ; do
case $opt in
-
- # -h: Print help
- h)
- usage
- exit
- ;;
-
- # -p: Specify prefix
p)
- prefix=$OPTARG
+ pref=$OPTARG
;;
-
- # -s: Specify suffix
s)
- suffix=$OPTARG
+ suff=$OPTARG
;;
-
- # Unknown option
\?)
usage >&2
exit 2
@@ -40,12 +18,8 @@ while getopts 'hp:s:' opt ; do
done
shift "$((OPTIND-1))"
-# Need at least one tag
-(($#)) || set /dev/stdin
-
-# Print each line as we read it, prepending the tags, separated by spaces
-for file ; do
- while IFS= read -r line ; do
- printf '%s%s%s\n' "$prefix" "$line" "$suffix"
- done < "$file"
+# Print each line as we read it, adding the tags
+cat -- "${@:--}" |
+while IFS= read -r line ; do
+ printf '%s%s%s\n' "$pref" "$line" "$suff"
done