fix bug
[tee-unique] / teeu
diff --git a/teeu b/teeu
index 87ba60bbac9e8e57b63d9e9920215fa3fb28ca33..9ff55ceba8efd696e1c20b3ca5b99be8afd1a35d 100755 (executable)
--- a/teeu
+++ b/teeu
@@ -2,28 +2,26 @@
 # Copyright (C) 2014 Ian Kelling
 # This program is under GPL v. 3 or later, see <http://www.gnu.org/licenses/>
 
-appendu() {
-    local help="Usage: appendu [-h|--help] FILE
+teeu() {
+    local help="Usage: appendu [-h|--help] FILE [LINE]
 
-Tee unique. Append each stdin line if it does not exist in the file
+Tee unique. Append each LINE or if none, each stdin line to FILE if it does not exist in FILE.
 
   [-h|--help]  display this message"
-
     
     if [[ $1 == --help || $1 == -h ]]; then
         echo "$help"
         return
     fi
     
-    if [[ ${#@} == 0 ]]; then
-        echo "error: need 1 or more arguments"
+    if (( ${#@} == 0 )) ; then
+        echo "teeu error: need 1 or more arguments"
         echo "$help"
         return 1
     fi
-
     local MAPFILE
-    mapfile -t
-    for line in "${MAPFILE[@]}"; do
+    (( ${#@} >= 2 )) && MAPFILE="${@:2}" || mapfile -t
+    for line in "${$MAPFILE[@]}"; do
         grep -xFq "$line" "$1" &>/dev/null || tee -a "$1" <<<"$line"
     done
     return 0