fixed a tiny error inside md5 extract function
authorpatrick nsukami <ndkpatt@gmail.com>
Wed, 3 Dec 2014 05:45:27 +0000 (05:45 +0000)
committerpatrick nsukami <ndkpatt@gmail.com>
Wed, 3 Dec 2014 05:45:27 +0000 (05:45 +0000)
.bash_function

index 4992cdc..50d5aa4 100644 (file)
@@ -278,7 +278,7 @@ my_xmd5() {
     local string=$1;
 
     echo "md5 hash of '$string' is: "
-    echo -n "$sring" | md5sum;
+    echo -n "$string" | md5sum;
 }
 
 # Creates an archive (*.tar.gz) from given directory.