]> git.armaanb.net Git - charsel.git/blobdiff - charsel
some big changes
[charsel.git] / charsel
diff --git a/charsel b/charsel
index 0934f5e7b18032a2dfdcd2a315acd5a66db7c1c8..077b10f87f8e11bf2c0e29cbdc1b528b31fe9528 100755 (executable)
--- a/charsel
+++ b/charsel
@@ -9,11 +9,13 @@ then
 elif [[ ! "$(ls -A $CHARDIR)" ]]
 then
   cp -rf /usr/share/charsel/- $CHARDIR/
-  cp -rf ~/.local/share/charsel/- $CHARDIR/
+  cp -rf $HOME/.local/share/charsel/- $CHARDIR/
 fi
 
 # Check for user inputs
-if [[ $1 == "list" ]]
+if [[ $1 == "list" \
+  || $1 == "-l" \
+  || $1 == "--list" ]]
 then
   echo "The following charfiles are installed"
   ls $CHARDIR/charfiles
@@ -54,14 +56,13 @@ do
     | tail -n +2 \
     | column -t -N input,output --output-separator ' | ' --separator ','
 
-  # Display previous
-  echo "--------------------------"
-  echo "previous shorcode:" $INPUT
-  echo "previous output:  " $OUTPUT
-  echo "--------------------------"
-
+  echo "*-------------------------*"
+  echo "| previous shorcode:" $INPUT
+  echo "| previous output:  " $OUTPUT
+  echo "*-------------------------*"
+  
   # User input
-  read -p "input shortcode:   " -N $LENGTH INPUT
+  read -p "input shortcode:   " -N $LENGTH INPUT
 
   # This can definately be simplifed, but it works fine
   LINENUMBER=$(cut -f 1 -d ',' -s $CHARFILE \