]> git.armaanb.net Git - charsel.git/blobdiff - charsel
made syntax checker more usable
[charsel.git] / charsel
diff --git a/charsel b/charsel
index b15a1ff4f31fbf204f236d9447bde8fcbc8c57e3..6e687e681f7c54bfe9d6915e34b6f4f456249765 100755 (executable)
--- a/charsel
+++ b/charsel
@@ -29,6 +29,7 @@ A simple terminal character selector
   -l              show installed charfiles
   -d              show readme
   -v              print version
+  -c              check charfile validity
       --all       include hidden shortcodes
 
 Exit status:
@@ -49,19 +50,12 @@ function readme() {
   cat /usr/share/doc/charsel/README.md
 }
 
-function invalid_charfile() {
+function missing_charfile() {
   echo "The selected charfile is missing or invalid"
   list
   exit 1
 }
 
-# Check if Xclip is installed
-if [[ -x xclip ]]
-then
-  echo "Please install xclip."
-  exit 4
-fi
-
 # Merge global and local charfiles
 if [[ -d $CHARDIR ]]
 then
@@ -88,8 +82,29 @@ then
   cp -rf /usr/share/charsel/* $CHARDIR
 fi
 
+# Check if charfile exists
+CHARFILE="$CHARDIR/charfiles/$2"
+function existence() {
+  if [[ ! -f $CHARFILE ]]
+  then
+    missing_charfile
+  fi
+}
+
+# VERY basic syntax check
+function validity() {
+  if [[ $(grep , $CHARFILE && grep - $CHARFILE) ]]
+  then
+    echo "valid charfile"
+  else
+    existence
+    echo "invalid charfile"
+    exit 2
+  fi
+}
+
 # Look for arguments
-while getopts ":lhdv" arg
+while getopts ":lchdv" arg
 do
   case ${arg} in
     h)
@@ -108,6 +123,10 @@ do
       echo "charsel" $VERSION
       exit 0
       ;;
+    c)
+      validity
+      exit 0
+      ;;
     ?)
       echo "Invalid option"
       usage
@@ -120,20 +139,16 @@ do
 done
 shift $((OPTIND-1))
 
-# Check if charfile exists
+# Redefine charfile and check file validity
 CHARFILE="$CHARDIR/charfiles/$1"
-if [[ ! -f $CHARFILE ]]
-then
-  invalid_charfile
-fi
+existence
+validity
 
-# VERY basic syntax validation
-if [[ $(grep , $CHARFILE && grep - $CHARFILE) ]]
+# Dependency check
+if [[ -x xclip ]]
 then
-  echo "valid charfile"
-else
-  echo "invalid charfile"
-  exit 2
+  echo "Please install xclip."
+  exit 4
 fi
 
 # Define length of shortcode