update README for gitorious move
authorIan Kelling <ian@iankelling.org>
Mon, 16 Feb 2015 10:05:13 +0000 (02:05 -0800)
committerIan Kelling <ian@iankelling.org>
Mon, 16 Feb 2015 10:05:13 +0000 (02:05 -0800)
README
logq
logq-function

diff --git a/README b/README
index a960550c97db9dacb19c2a9ad9d82387010871fd..b3829e2fd029748742db8d8360579ce2e911aaed 100644 (file)
--- a/README
+++ b/README
@@ -4,12 +4,9 @@ script files which sit next to this file.
 Files ending in -function are for sourcing then calling as a function. Files
 without -function are exactly the same except they are for calling as a script.
 
-Patches and bugs are very welcome via gitlab.
-
-Questions, feedback, etc are very welcome via email to Ian Kelling
-<ian@iankelling.org>. I will add any useful questions, answers, etc. to this
-file. If a mailing list / forum is ever called for, I will start one.
+Patches, bugs, and any feedback is very welcome via gitorious or email to
+Ian Kelling <ian@iankelling.org>.
 
 This program is also part of a collection of programs,
-https://gitlab.com/iankelling/bash-programs-by-ian, which are unrelated except
+https://gitorious.org/bash-programs-by-ian, which are unrelated except
 having the same author and being being bash programs.
diff --git a/logq b/logq
index 2ac002635d89be7d2ce15f23c911f85f79543a1d..bb987431c014e109258be9e2b193535fa54c40c0 100755 (executable)
--- a/logq
+++ b/logq
@@ -18,7 +18,7 @@ alphanumeric characters of COMMAND + ARGs."
 $help"
        return 1
     fi
-    
+
     local index=0
     local x prettycommand
     for x in "$@"; do
@@ -26,12 +26,12 @@ $help"
         index=$(( index+1 ))
     done
 
-    
+
     local file="$*"
     file="$(mktemp -d)/${file//[^[:alnum:]]/}"
 
-    printf "%s\n%s\n\n" "log of $prettycommand" "$(date)" >"$file" 
-    
+    printf "%s\n%s\n\n" "log of $prettycommand" "$(date)" >"$file"
+
     # we will propagate any errors
     local e=$-
     [[ $e == *e* ]] && set +e
@@ -40,10 +40,10 @@ $help"
     [[ $e == *e* ]] && set -e
 
     printf "\n%s\n%s\n%s" "----------------" "$(date)" "end of log" >>"$file"
-    
+
     echo -n "\$?=$ret "
     echo -n "$prettycommand"
     echo "[log] $file"
     return $ret
-} 
+}
 logq "$@"
index 8b930641a8222fba7134e19c148e5592e32c7c4b..afe722fbbeab25b79787fa918f08c2732768ddd5 100644 (file)
@@ -18,7 +18,7 @@ alphanumeric characters of COMMAND + ARGs."
 $help"
        return 1
     fi
-    
+
     local index=0
     local x prettycommand
     for x in "$@"; do
@@ -26,12 +26,12 @@ $help"
         index=$(( index+1 ))
     done
 
-    
+
     local file="$*"
     file="$(mktemp -d)/${file//[^[:alnum:]]/}"
 
-    printf "%s\n%s\n\n" "log of $prettycommand" "$(date)" >"$file" 
-    
+    printf "%s\n%s\n\n" "log of $prettycommand" "$(date)" >"$file"
+
     # we will propagate any errors
     local e=$-
     [[ $e == *e* ]] && set +e
@@ -40,9 +40,9 @@ $help"
     [[ $e == *e* ]] && set -e
 
     printf "\n%s\n%s\n%s" "----------------" "$(date)" "end of log" >>"$file"
-    
+
     echo -n "\$?=$ret "
     echo -n "$prettycommand"
     echo "[log] $file"
     return $ret
-} 
+}