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

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/lnf b/lnf
index 29f137df5f89acaa63075826a3801c2cf5333569..c907b6246416e27a6bbb0d5b9fa6cf9d7922c61b 100755 (executable)
--- a/lnf
+++ b/lnf
@@ -15,7 +15,7 @@ Create directory if needed. Slightly more restrictive arguments than ln.
 In the 1st form, create a link to TARGET with the name LINK_NAME.  In the 2nd
 form, create a link to TARGET in the current directory.  In the 3rd form, create
 links to each TARGET in DIRECTORY."
-    
+
     if [[ $1 == --help || $# -eq 0 ]]; then
         echo "$help"
         return 0
@@ -30,19 +30,19 @@ links to each TARGET in DIRECTORY."
             return 1
         fi
     fi
-    
+
     local reset_extglob=false
     ! shopt extglob >/dev/null && reset_extglob=true
     shopt -s extglob
 
-    
+
     local remove x
     if type -P trash-put >/dev/null; then
         remove=trash-put
     else
         remove="rm -rf"
     fi
-    
+
     if [[ $nodir ]]; then
         if [[ -e "$2" || -L "$2" ]]; then
             $remove "$2"
@@ -72,7 +72,7 @@ links to each TARGET in DIRECTORY."
         [[ -e "${1##*/}" || -L "${1##*/}" ]] && $remove "${1##*/}"
     fi
 
-    $reset_extglob && shopt -u extglob 
+    $reset_extglob && shopt -u extglob
     ln -s $nodir -- "$@"
 }
 lnf "$@"
index 9dbcef5ac4e2183f7013db3f22ddb6d523078b2f..0d43112818fbc1ef4a59722cdd41665eb003f25d 100644 (file)
@@ -15,7 +15,7 @@ Create directory if needed. Slightly more restrictive arguments than ln.
 In the 1st form, create a link to TARGET with the name LINK_NAME.  In the 2nd
 form, create a link to TARGET in the current directory.  In the 3rd form, create
 links to each TARGET in DIRECTORY."
-    
+
     if [[ $1 == --help || $# -eq 0 ]]; then
         echo "$help"
         return 0
@@ -30,19 +30,19 @@ links to each TARGET in DIRECTORY."
             return 1
         fi
     fi
-    
+
     local reset_extglob=false
     ! shopt extglob >/dev/null && reset_extglob=true
     shopt -s extglob
 
-    
+
     local remove x
     if type -P trash-put >/dev/null; then
         remove=trash-put
     else
         remove="rm -rf"
     fi
-    
+
     if [[ $nodir ]]; then
         if [[ -e "$2" || -L "$2" ]]; then
             $remove "$2"
@@ -72,6 +72,6 @@ links to each TARGET in DIRECTORY."
         [[ -e "${1##*/}" || -L "${1##*/}" ]] && $remove "${1##*/}"
     fi
 
-    $reset_extglob && shopt -u extglob 
+    $reset_extglob && shopt -u extglob
     ln -s $nodir -- "$@"
 }
index afbb6306a3fed7172407340f09a3a964cd9fbc96..d3a5eac00b8976fc42db94d7c0c2729a46f5cb78 100755 (executable)
--- a/test/test
+++ b/test/test
 case1() {
     touch b
     lnf -T a b
-    [[ -L b ]] 
+    [[ -L b ]]
 }
 
 # 2 arguments, test that directory in link location is removed and replaced with a link
 case2() {
     mkdir b
     lnf -T a b
-    [[ -L b ]] 
+    [[ -L b ]]
 }
 
 # single argument, test that an existing non-empty directory is removed and replaced by a link
@@ -27,7 +27,7 @@ case3() {
     mkdir a
     touch a/b
     lnf ../a
-    [[ -L a ]] 
+    [[ -L a ]]
 }
 
 # 4 arguments, 2 of the link locations already contain files.
@@ -37,14 +37,14 @@ case4() {
     touch a/b
     touch a/c
     lnf b c d a
-    [[ -L a/b && -L a/c && -L a/d ]] 
+    [[ -L a/b && -L a/c && -L a/d ]]
 }
 
 # 2 arguments, test that link is made correctly
 case5() {
     mkdir b
     lnf a b
-    [[ -L b/a ]] 
+    [[ -L b/a ]]
 }