diff --git a/pipetofile-ssh-pubkeys/.travis.yml b/pipetofile-ssh-pubkeys/.travis.yml new file mode 100644 index 0000000..2806cad --- /dev/null +++ b/pipetofile-ssh-pubkeys/.travis.yml @@ -0,0 +1,17 @@ +language: cpp +compiler: gcc +jobs: + include: + - os: linux + dist: focal + - os: linux + dist: xenial + - os: osx +env: + - BUILD_TYPE=Debug +script: + - echo 1 | ./install.sh + - cat test-input.txt + - cat test-input.txt | ~/.local/bin/$(basename $PWD) + - echo "Contents of /tmp/ssh_authorized_keys:" && cat /tmp/ssh_authorized_keys + - echo 1 | ./uninstall.sh diff --git a/pipetofile-ssh-pubkeys/README.md b/pipetofile-ssh-pubkeys/README.md new file mode 100644 index 0000000..8df1539 --- /dev/null +++ b/pipetofile-ssh-pubkeys/README.md @@ -0,0 +1,60 @@ +![Banner](info/banner.png) + +[![PGTechs](https://img.shields.io/static/v1.svg?color=ff0000&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=PG%20Techs&message=YouTube)](https://www.youtube.com/c/PGTechs "ช่อง YouTube ของเรา") +[![PGVCPlus](https://img.shields.io/static/v1.svg?color=0572e6&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=PGVC%2B&message=Facebook)](https://www.facebook.com/PrincegameRVCPlus "เพจข่าวสาร Distributed Computing ของเรา บน Facebook") + +อีกหนึ่งแอปพลิเคชันคุณภาพจาก SashaPGT + +* ทุกแอปพลิเคชันผ่านการทดสอบติดตั้งและใช้งานใน Test environment ของเรา + +* ใช้งานได้อย่างสะดวกรวดเร็ว ด้วยสคริปต์ติดตั้งแบบสำเร็จรูป ทั้งเฉพาะผู้ใช้และ System-wide + +* รองรับ Linux และ macOS + +# sashapgt/ptf-ssh-authorized-keys + +[![Build Status](https://app.travis-ci.com/sashapgt/ptf-ssh-authorized-keys.svg?branch=main)](https://app.travis-ci.com/gitlab/sashapgt/ptf-ssh-authorized-keys) + +"จงเขียนโปรแกรมเพื่อรับข้อมูลเป็น string ไปเรื่อยๆ จนกว่าจะพิมพ์เครื่องหมาย . หลังจากนั้นให้จัดเก็บข้อมูลลงในไฟล์ชื่อ /tmp/ssh_authorized_keys ดังตัวอย่าง" + +**ตัวอย่างการทำงานของโปรแกรม** + +![Screenshot](info/screenshot.png) + +# วิธีการติดตั้ง/ใช้งาน +### ติดตั้งแบบปกติ +1. โคลน git นี้ + + `$ git clone https://gitlab.com/sashapgt/ptf-ssh-authorized-keys.git` + +2. cd เข้าโฟลเดอร์ของ git นี้ แล้วรันสคริปต์ติดตั้ง + + `$ cd ptf-ssh-authorized-keys && bash install.sh` + +3. เรียกใช้จากเทอร์มินัล (Shell autocomplete อาจจะยังไม่ทำงาน กรุณาปิดเทอร์มินัล แล้วเปิดใหม่อีกครั้ง) + + `$ ptf-ssh-authorized-keys` +### ใช้งานครั้งเดียว (Build, run และ remove ทันทีเมื่อใช้งานเสร็จโดยอัตโนมัติ) + $ bash single-use-build-and-run.sh + +# ถอนการติดตั้ง + + +1. รันสคริปต์ถอนการติดตั้งจากในโฟลเดอร์ git นี้ + + `$ bash uninstall.sh` + +2. ลบโฟลเดอร์ git นี้ + +# การแก้ปัญหา + +หากไม่สามารถรันได้เนื่องจาก Command not found ให้ดูว่ามี ~/.local/bin ใน $PATH หรือไม่ +สามารถตรวจสอบได้โดยการ + + echo $PATH + +หากไม่มี Home folder ของคุณ ตามด้วย .local/bin ให้เพิ่มบรรทัดนี้ลงใน Shell startup script ของคุณ (เช่น .bashrc .zshrc) + + export PATH="$PATH:$HOME/.local/bin" + + diff --git a/pipetofile-ssh-pubkeys/info/banner.png b/pipetofile-ssh-pubkeys/info/banner.png new file mode 100755 index 0000000..686ee90 Binary files /dev/null and b/pipetofile-ssh-pubkeys/info/banner.png differ diff --git a/pipetofile-ssh-pubkeys/info/screenshot.png b/pipetofile-ssh-pubkeys/info/screenshot.png new file mode 100644 index 0000000..8e1738e Binary files /dev/null and b/pipetofile-ssh-pubkeys/info/screenshot.png differ diff --git a/pipetofile-ssh-pubkeys/install.sh b/pipetofile-ssh-pubkeys/install.sh new file mode 100755 index 0000000..0e15104 --- /dev/null +++ b/pipetofile-ssh-pubkeys/install.sh @@ -0,0 +1,60 @@ +#!/bin/bash + +DIR1=$HOME/.local/bin +DIR2=/usr/local/bin +APPNAME=$(basename $PWD) + + clear + if [[ "${EUID}" -eq 0 ]]; then + echo " " + echo "คุณกำลังใช้สิทธิ์ Root! ต้องการดำเนินการติดตั้งต่อใน $DIR2 หรือไม่" + echo " " + echo "1) ไม่" + echo "2) ใช่" + echo " " + read -p "ใส่คำตอบของคุณ [1] : " INSTALLCHOICE + until [[ -z "$INSTALLCHOICE" || "$INSTALLCHOICE" =~ ^[1-2]$ ]]; do + printf "\n$INSTALLCHOICE: ค่าที่ใส่ไม่ถูกต้อง\n\n" + read -p "ใส่คำตอบของคุณ [1] : " INSTALLCHOICE + done + case "$INSTALLCHOICE" in + 1|"") + exit + ;; + 2) + DIR=$DIR2 + printf "\nกำลัง Build และติดตั้ง $APPNAME ใน $DIR\n" + g++ -o $APPNAME main.cpp && mv $APPNAME $DIR + ;; + esac + else + echo " " + echo "เลือกผู้ใช้ที่ต้องการติดตั้งให้" + echo " " + echo "1) $USER ($DIR1)" + echo "2) ทุกคน ($DIR2)" + echo " " + read -p "ใส่คำตอบของคุณ [1] : " INSTALLCHOICE + + until [[ -z "$INSTALLCHOICE" || "$INSTALLCHOICE" =~ ^[1-2]$ ]]; do + printf "\n$INSTALLCHOICE: ค่าที่ใส่ไม่ถูกต้อง\n\n" + read -p "ใส่คำตอบของคุณ [1] : " INSTALLCHOICE + done + case "$INSTALLCHOICE" in + 1|"") + DIR=$DIR1 + if [[ ! -d "$DIR" ]]; then + mkdir -p $DIR + fi + printf "\nกำลัง Build และติดตั้ง $APPNAME ใน $DIR\n" + g++ -o $APPNAME main.cpp && mv $APPNAME $DIR + ;; + 2) + DIR=$DIR2 + printf "\nกำลัง Build และติดตั้ง $APPNAME ใน $DIR\n" + printf "\nกรุณาใส่รหัสผ่าน sudo หากถูกถามในการติดตั้ง\n\n" + g++ -o $APPNAME main.cpp && sudo mv $APPNAME $DIR + ;; + esac + fi + printf "\nการติดตั้ง $APPNAME ใน $DIR เสร็จสมบูรณ์\n" diff --git a/pipetofile-ssh-pubkeys/main.cpp b/pipetofile-ssh-pubkeys/main.cpp new file mode 100644 index 0000000..f0f5734 --- /dev/null +++ b/pipetofile-ssh-pubkeys/main.cpp @@ -0,0 +1,48 @@ +#include +#include + +int main() { + FILE * fp; + char algo[20]={0},key[1000],userHost[100],cha; + printf("Key Algorithm? (ssh-rsa,ssh-ed25519,etc.)\n: "); + int i=0; + fp=fopen("/tmp/ssh_authorized_keys","a"); + while((cha=getchar())!='\n'&&cha!=EOF){ + algo[i]=cha; + i++; + } + algo[i]='\0'; + i=0; + while(algo[0]!='.'){ + printf("Public Key\n: "); + while((cha=getchar())!='\n'&&cha!=EOF){ + key[i]=cha; + i++; + } + key[i]='\0'; + i=0; + printf("Username and Host? (you@example.com)\n: "); + while((cha=getchar())!='\n'&&cha!=EOF){ + userHost[i]=cha; + i++; + } + userHost[i]='\0'; + i=0; + fprintf(fp,"%s %s %s\n", algo,key,userHost); + printf("Next Key Algorithm? (Enter"); + putchar('"'); + putchar('.'); + putchar('"'); + printf("to stop adding keys)\n: "); + while((cha=getchar())!='\n'&&cha!=EOF){ + algo[i]=cha; + i++; + } + algo[i]='\0'; + i=0; + + } + fclose(fp); + printf("Output has been saved to /tmp/ssh_authorized_keys\nYou can safely close this window now."); + return 0; +} diff --git a/pipetofile-ssh-pubkeys/single-use-build-and-run.sh b/pipetofile-ssh-pubkeys/single-use-build-and-run.sh new file mode 100755 index 0000000..1a6e2bf --- /dev/null +++ b/pipetofile-ssh-pubkeys/single-use-build-and-run.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +g++ -o main main.cpp + +./main + +rm main diff --git a/pipetofile-ssh-pubkeys/test-input.txt b/pipetofile-ssh-pubkeys/test-input.txt new file mode 100644 index 0000000..6b8d740 --- /dev/null +++ b/pipetofile-ssh-pubkeys/test-input.txt @@ -0,0 +1,4 @@ +ssh-ed25519 +AAAAC3NzaC1lZDI1NTE5AAAAILWfAmdihezu8LaAc0Q0bszrNWF1Wul7YJTJhaNg862s +sasha@test1 +. diff --git a/pipetofile-ssh-pubkeys/uninstall.sh b/pipetofile-ssh-pubkeys/uninstall.sh new file mode 100755 index 0000000..c96ef80 --- /dev/null +++ b/pipetofile-ssh-pubkeys/uninstall.sh @@ -0,0 +1,74 @@ +#!/bin/bash + +DIR1=$HOME/.local/bin +DIR2=/usr/local/bin +APPNAME=$(basename $PWD) + + clear + if [[ "${EUID}" -eq 0 ]]; then + echo " " + echo "คุณกำลังใช้สิทธิ์ Root! ต้องการถอนการติดตั้งจาก $DIR2 หรือไม่" + echo " " + echo "1) ไม่" + echo "2) ใช่" + echo " " + read -p "ใส่คำตอบของคุณ [1] : " UNINSTALLCHOICE + + until [[ -z "$UNINSTALLCHOICE" || "$UNINSTALLCHOICE" =~ ^[1-2]$ ]]; do + printf "\n$UNINSTALLCHOICE: ค่าที่ใส่ไม่ถูกต้อง\n\n" + read -p "ใส่คำตอบของคุณ [1] : " UNINSTALLCHOICE + done + case "$UNINSTALLCHOICE" in + 1|"") + exit + ;; + 2) + DIR=$DIR2 + if [[ -f "$DIR/$APPNAME" ]]; then + echo "กำลังถอนการติดตั้ง $APPNAME จาก $DIR" + rm $DIR/$APPNAME + else + echo "ไม่สามารถถอนการติดตั้งได้เนื่องจากยังไม่ได้ติดตั้งแอปพลิเคชันใน $DIR" + fi + ;; + esac + else + echo " " + echo "เลือกผู้ใช้ที่ต้องการถอนติดตั้งให้" + echo " " + echo "1) $USER ($DIR1)" + echo "2) ทุกคน ($DIR2)" + echo " " + read -p "ใส่คำตอบของคุณ : " UNINSTALLCHOICE + until [[ -z "$UNINSTALLCHOICE" || "$UNINSTALLCHOICE" =~ ^[1-2]$ ]]; do + echo "$UNINSTALLCHOICE: ค่าที่ใส่ไม่ถูกต้อง" + read -p "ใส่คำตอบของคุณ :" UNINSTALLCHOICE + done + case "$UNINSTALLCHOICE" in + 1) + DIR=$DIR1 + if [[ -f "$DIR/$APPNAME" ]]; then + printf "\nกำลังถอนการติดตั้ง $APPNAME จาก $DIR\n" + rm $DIR/$APPNAME + else + printf "\nไม่สามารถถอนการติดตั้งได้เนื่องจากยังไม่ได้ติดตั้งแอปพลิเคชันใน $DIR" + exit + fi + ;; + 2) + DIR=$DIR2 + if [[ -f "$DIR/$APPNAME" ]]; then + printf "\nกำลังถอนการติดตั้ง $APPNAME จาก $DIR\n" + printf "\nกรุณาใส่รหัสผ่าน sudo หากถูกถามขณะถอนการติดตั้ง\n\n" + sudo rm $DIR/$APPNAME + else + printf "\nไม่สามารถถอนการติดตั้งได้เนื่องจากยังไม่ได้ติดตั้งแอปพลิเคชันใน $DIR" + exit + fi + ;; + "") + exit + ;; + esac + fi + printf "\nการถอนการติดตั้ง $APPNAME จาก $DIR เสร็จสมบูรณ์\n" diff --git a/pipetofile/.travis.yml b/pipetofile/.travis.yml new file mode 100644 index 0000000..b4aad6c --- /dev/null +++ b/pipetofile/.travis.yml @@ -0,0 +1,17 @@ +language: cpp +compiler: gcc +jobs: + include: + - os: linux + dist: focal + - os: linux + dist: xenial + - os: osx +env: + - BUILD_TYPE=Debug +script: + - echo 1 | ./install.sh + - cat test-input.txt + - cat test-input.txt | ~/.local/bin/$(basename $PWD) + - echo "Contents of /tmp/data.txt:" && cat /tmp/data.txt + - echo 1 | ./uninstall.sh diff --git a/pipetofile/README.md b/pipetofile/README.md new file mode 100644 index 0000000..1780dbd --- /dev/null +++ b/pipetofile/README.md @@ -0,0 +1,60 @@ +![Banner](info/banner.png) + +[![PGTechs](https://img.shields.io/static/v1.svg?color=ff0000&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=PG%20Techs&message=YouTube)](https://www.youtube.com/c/PGTechs "ช่อง YouTube ของเรา") +[![PGVCPlus](https://img.shields.io/static/v1.svg?color=0572e6&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=PGVC%2B&message=Facebook)](https://www.facebook.com/PrincegameRVCPlus "เพจข่าวสาร Distributed Computing ของเรา บน Facebook") + +อีกหนึ่งแอปพลิเคชันคุณภาพจาก SashaPGT + +* ทุกแอปพลิเคชันผ่านการทดสอบติดตั้งและใช้งานใน Test environment ของเรา + +* ใช้งานได้อย่างสะดวกรวดเร็ว ด้วยสคริปต์ติดตั้งแบบสำเร็จรูป ทั้งเฉพาะผู้ใช้และ System-wide + +* รองรับ Linux และ macOS + +# sashapgt/pipetofile + +[![Build Status](https://app.travis-ci.com/sashapgt/pipetofile.svg?branch=main)](https://app.travis-ci.com/gitlab/sashapgt/pipetofile) + +"จงเขียนโปรแกรมเพื่อรับข้อมูลเป็น string ไปเรื่อยๆ จนกว่าจะพิมพ์เครื่องหมาย . หลังจากนั้นให้จัดเก็บข้อมูลลงในไฟล์ชื่อ /tmp/data.txt ดังตัวอย่าง" + +**ตัวอย่างการทำงานของโปรแกรม** + +![Screenshot](info/screenshot.png) + +# วิธีการติดตั้ง/ใช้งาน +### ติดตั้งแบบปกติ +1. โคลน git นี้ + + `$ git clone https://gitlab.com/sashapgt/pipetofile.git` + +2. cd เข้าโฟลเดอร์ของ git นี้ แล้วรันสคริปต์ติดตั้ง + + `$ cd pipetofile && bash install.sh` + +3. เรียกใช้จากเทอร์มินัล (Shell autocomplete อาจจะยังไม่ทำงาน กรุณาปิดเทอร์มินัล แล้วเปิดใหม่อีกครั้ง) + + `$ pipetofile` +### ใช้งานครั้งเดียว (Build, run และ remove ทันทีเมื่อใช้งานเสร็จโดยอัตโนมัติ) + $ bash single-use-build-and-run.sh + +# ถอนการติดตั้ง + + +1. รันสคริปต์ถอนการติดตั้งจากในโฟลเดอร์ git นี้ + + `$ bash uninstall.sh` + +2. ลบโฟลเดอร์ git นี้ + +# การแก้ปัญหา + +หากไม่สามารถรันได้เนื่องจาก Command not found ให้ดูว่ามี ~/.local/bin ใน $PATH หรือไม่ +สามารถตรวจสอบได้โดยการ + + echo $PATH + +หากไม่มี Home folder ของคุณ ตามด้วย .local/bin ให้เพิ่มบรรทัดนี้ลงใน Shell startup script ของคุณ (เช่น .bashrc .zshrc) + + export PATH="$PATH:$HOME/.local/bin" + + diff --git a/pipetofile/info/banner.png b/pipetofile/info/banner.png new file mode 100755 index 0000000..686ee90 Binary files /dev/null and b/pipetofile/info/banner.png differ diff --git a/pipetofile/info/screenshot.png b/pipetofile/info/screenshot.png new file mode 100644 index 0000000..aba94bf Binary files /dev/null and b/pipetofile/info/screenshot.png differ diff --git a/pipetofile/install.sh b/pipetofile/install.sh new file mode 100755 index 0000000..0e15104 --- /dev/null +++ b/pipetofile/install.sh @@ -0,0 +1,60 @@ +#!/bin/bash + +DIR1=$HOME/.local/bin +DIR2=/usr/local/bin +APPNAME=$(basename $PWD) + + clear + if [[ "${EUID}" -eq 0 ]]; then + echo " " + echo "คุณกำลังใช้สิทธิ์ Root! ต้องการดำเนินการติดตั้งต่อใน $DIR2 หรือไม่" + echo " " + echo "1) ไม่" + echo "2) ใช่" + echo " " + read -p "ใส่คำตอบของคุณ [1] : " INSTALLCHOICE + until [[ -z "$INSTALLCHOICE" || "$INSTALLCHOICE" =~ ^[1-2]$ ]]; do + printf "\n$INSTALLCHOICE: ค่าที่ใส่ไม่ถูกต้อง\n\n" + read -p "ใส่คำตอบของคุณ [1] : " INSTALLCHOICE + done + case "$INSTALLCHOICE" in + 1|"") + exit + ;; + 2) + DIR=$DIR2 + printf "\nกำลัง Build และติดตั้ง $APPNAME ใน $DIR\n" + g++ -o $APPNAME main.cpp && mv $APPNAME $DIR + ;; + esac + else + echo " " + echo "เลือกผู้ใช้ที่ต้องการติดตั้งให้" + echo " " + echo "1) $USER ($DIR1)" + echo "2) ทุกคน ($DIR2)" + echo " " + read -p "ใส่คำตอบของคุณ [1] : " INSTALLCHOICE + + until [[ -z "$INSTALLCHOICE" || "$INSTALLCHOICE" =~ ^[1-2]$ ]]; do + printf "\n$INSTALLCHOICE: ค่าที่ใส่ไม่ถูกต้อง\n\n" + read -p "ใส่คำตอบของคุณ [1] : " INSTALLCHOICE + done + case "$INSTALLCHOICE" in + 1|"") + DIR=$DIR1 + if [[ ! -d "$DIR" ]]; then + mkdir -p $DIR + fi + printf "\nกำลัง Build และติดตั้ง $APPNAME ใน $DIR\n" + g++ -o $APPNAME main.cpp && mv $APPNAME $DIR + ;; + 2) + DIR=$DIR2 + printf "\nกำลัง Build และติดตั้ง $APPNAME ใน $DIR\n" + printf "\nกรุณาใส่รหัสผ่าน sudo หากถูกถามในการติดตั้ง\n\n" + g++ -o $APPNAME main.cpp && sudo mv $APPNAME $DIR + ;; + esac + fi + printf "\nการติดตั้ง $APPNAME ใน $DIR เสร็จสมบูรณ์\n" diff --git a/pipetofile/main.cpp b/pipetofile/main.cpp new file mode 100644 index 0000000..a7b2525 --- /dev/null +++ b/pipetofile/main.cpp @@ -0,0 +1,23 @@ +#include +#include + +int main() { + FILE * fp; + char input[100]={0},cha; + printf("Input data here under this line\n"); + printf("-------------------------------\n"); + int i=0; + fp=fopen("/tmp/data.txt","w+"); + while(input[0]!='.'){ + while((cha=getchar())!='\n'&&cha!=EOF){ + input[i]=cha; + i++; + } + input[i]='\0'; + i=0; + fprintf(fp,"%s\n", input); + } + fclose(fp); + printf("Output has been saved to /tmp/data.txt\nYou can safely close this window now."); + return 0; +} diff --git a/pipetofile/single-use-build-and-run.sh b/pipetofile/single-use-build-and-run.sh new file mode 100755 index 0000000..1a6e2bf --- /dev/null +++ b/pipetofile/single-use-build-and-run.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +g++ -o main main.cpp + +./main + +rm main diff --git a/pipetofile/test-input.txt b/pipetofile/test-input.txt new file mode 100644 index 0000000..5809eed --- /dev/null +++ b/pipetofile/test-input.txt @@ -0,0 +1,4 @@ +3wtc1sgn2 +r11n2g +n1r1t4pm3clt2mkaca +. diff --git a/pipetofile/uninstall.sh b/pipetofile/uninstall.sh new file mode 100755 index 0000000..c96ef80 --- /dev/null +++ b/pipetofile/uninstall.sh @@ -0,0 +1,74 @@ +#!/bin/bash + +DIR1=$HOME/.local/bin +DIR2=/usr/local/bin +APPNAME=$(basename $PWD) + + clear + if [[ "${EUID}" -eq 0 ]]; then + echo " " + echo "คุณกำลังใช้สิทธิ์ Root! ต้องการถอนการติดตั้งจาก $DIR2 หรือไม่" + echo " " + echo "1) ไม่" + echo "2) ใช่" + echo " " + read -p "ใส่คำตอบของคุณ [1] : " UNINSTALLCHOICE + + until [[ -z "$UNINSTALLCHOICE" || "$UNINSTALLCHOICE" =~ ^[1-2]$ ]]; do + printf "\n$UNINSTALLCHOICE: ค่าที่ใส่ไม่ถูกต้อง\n\n" + read -p "ใส่คำตอบของคุณ [1] : " UNINSTALLCHOICE + done + case "$UNINSTALLCHOICE" in + 1|"") + exit + ;; + 2) + DIR=$DIR2 + if [[ -f "$DIR/$APPNAME" ]]; then + echo "กำลังถอนการติดตั้ง $APPNAME จาก $DIR" + rm $DIR/$APPNAME + else + echo "ไม่สามารถถอนการติดตั้งได้เนื่องจากยังไม่ได้ติดตั้งแอปพลิเคชันใน $DIR" + fi + ;; + esac + else + echo " " + echo "เลือกผู้ใช้ที่ต้องการถอนติดตั้งให้" + echo " " + echo "1) $USER ($DIR1)" + echo "2) ทุกคน ($DIR2)" + echo " " + read -p "ใส่คำตอบของคุณ : " UNINSTALLCHOICE + until [[ -z "$UNINSTALLCHOICE" || "$UNINSTALLCHOICE" =~ ^[1-2]$ ]]; do + echo "$UNINSTALLCHOICE: ค่าที่ใส่ไม่ถูกต้อง" + read -p "ใส่คำตอบของคุณ :" UNINSTALLCHOICE + done + case "$UNINSTALLCHOICE" in + 1) + DIR=$DIR1 + if [[ -f "$DIR/$APPNAME" ]]; then + printf "\nกำลังถอนการติดตั้ง $APPNAME จาก $DIR\n" + rm $DIR/$APPNAME + else + printf "\nไม่สามารถถอนการติดตั้งได้เนื่องจากยังไม่ได้ติดตั้งแอปพลิเคชันใน $DIR" + exit + fi + ;; + 2) + DIR=$DIR2 + if [[ -f "$DIR/$APPNAME" ]]; then + printf "\nกำลังถอนการติดตั้ง $APPNAME จาก $DIR\n" + printf "\nกรุณาใส่รหัสผ่าน sudo หากถูกถามขณะถอนการติดตั้ง\n\n" + sudo rm $DIR/$APPNAME + else + printf "\nไม่สามารถถอนการติดตั้งได้เนื่องจากยังไม่ได้ติดตั้งแอปพลิเคชันใน $DIR" + exit + fi + ;; + "") + exit + ;; + esac + fi + printf "\nการถอนการติดตั้ง $APPNAME จาก $DIR เสร็จสมบูรณ์\n"