OSDN Git Service

[fix] : Fixed some bugs v1.1
authorhayao <shun819.mail@gmail.com>
Sat, 1 Aug 2020 07:23:29 +0000 (16:23 +0900)
committerhayao <shun819.mail@gmail.com>
Sat, 1 Aug 2020 07:23:29 +0000 (16:23 +0900)
alterlinux-gtk-bookmarks/alterlinux-gtk-bookmarks

index 8557e60..0d51ff0 100755 (executable)
@@ -87,8 +87,8 @@ init() {
 
 # Argument analysis and processing
 options="${@}"
-_opt_short="fh"
-_opt_long="force,help,alterlive"
+_opt_short="fht"
+_opt_long="force,help,alterlive,t-mart"
 OPT=$(getopt -o ${_opt_short} -l ${_opt_long} -- "${@}")
 if [[ ${?} != 0 ]]; then
     exit 1
@@ -115,6 +115,11 @@ while true; do
             alterlive=true
             shift 1
             ;;
+        -t | --t-mart)
+            echo "さすが店長、青春ブタ野郎だね"
+            shift 1
+            exit 0
+            ;;
         --)
             shift
             break