Add function to get package version using underscore separator
authorHugo Villeneuve <hugo@hugovil.com>
Wed, 7 Aug 2013 21:57:50 +0000 (17:57 -0400)
committerHugo Villeneuve <hugo@hugovil.com>
Wed, 7 Aug 2013 21:57:50 +0000 (17:57 -0400)
functions/main

index ebdc9d8..0adc06d 100644 (file)
@@ -178,6 +178,19 @@ get_pkg_ver()
     echo ${1} | sed "s!.*-\([0-9].*\)!\1!g"
 }
 
+# Extracting the version number from a complete package name using underscore as separator.
+# Arg. #1: Complete package name with version (ex: ecryptfs-utils_103 will output 103)
+get_pkg_ver_underscore()
+{
+    # Checking for correct number of arguments
+    if [ $# -ne 1 ]; then
+       echo "${FUNCNAME}(), wrong number of arguments: ${*}"
+       return 1
+    fi
+
+    echo ${1} | sed "s!.*_\([0-9].*\)!\1!g"
+}
+
 # Extracting the first digit version number from a complete package name.
 # Arg. #1: Complete package name with version (ex: gcc-3.4.4 will output 3)
 get_pkg_ver1()