เพิ่ม pipetofile
This commit is contained in:
parent
a2524fdeae
commit
b2186285e6
18 changed files with 515 additions and 0 deletions
17
pipetofile-ssh-pubkeys/.travis.yml
Normal file
17
pipetofile-ssh-pubkeys/.travis.yml
Normal file
|
@ -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
|
60
pipetofile-ssh-pubkeys/README.md
Normal file
60
pipetofile-ssh-pubkeys/README.md
Normal file
|
@ -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"
|
||||
|
||||
|
BIN
pipetofile-ssh-pubkeys/info/banner.png
Executable file
BIN
pipetofile-ssh-pubkeys/info/banner.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 69 KiB |
BIN
pipetofile-ssh-pubkeys/info/screenshot.png
Normal file
BIN
pipetofile-ssh-pubkeys/info/screenshot.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 75 KiB |
60
pipetofile-ssh-pubkeys/install.sh
Executable file
60
pipetofile-ssh-pubkeys/install.sh
Executable file
|
@ -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"
|
48
pipetofile-ssh-pubkeys/main.cpp
Normal file
48
pipetofile-ssh-pubkeys/main.cpp
Normal file
|
@ -0,0 +1,48 @@
|
|||
#include<stdio.h>
|
||||
#include<stdlib.h>
|
||||
|
||||
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;
|
||||
}
|
7
pipetofile-ssh-pubkeys/single-use-build-and-run.sh
Executable file
7
pipetofile-ssh-pubkeys/single-use-build-and-run.sh
Executable file
|
@ -0,0 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
g++ -o main main.cpp
|
||||
|
||||
./main
|
||||
|
||||
rm main
|
4
pipetofile-ssh-pubkeys/test-input.txt
Normal file
4
pipetofile-ssh-pubkeys/test-input.txt
Normal file
|
@ -0,0 +1,4 @@
|
|||
ssh-ed25519
|
||||
AAAAC3NzaC1lZDI1NTE5AAAAILWfAmdihezu8LaAc0Q0bszrNWF1Wul7YJTJhaNg862s
|
||||
sasha@test1
|
||||
.
|
74
pipetofile-ssh-pubkeys/uninstall.sh
Executable file
74
pipetofile-ssh-pubkeys/uninstall.sh
Executable file
|
@ -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"
|
17
pipetofile/.travis.yml
Normal file
17
pipetofile/.travis.yml
Normal file
|
@ -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
|
60
pipetofile/README.md
Normal file
60
pipetofile/README.md
Normal file
|
@ -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"
|
||||
|
||||
|
BIN
pipetofile/info/banner.png
Executable file
BIN
pipetofile/info/banner.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 69 KiB |
BIN
pipetofile/info/screenshot.png
Normal file
BIN
pipetofile/info/screenshot.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 50 KiB |
60
pipetofile/install.sh
Executable file
60
pipetofile/install.sh
Executable file
|
@ -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"
|
23
pipetofile/main.cpp
Normal file
23
pipetofile/main.cpp
Normal file
|
@ -0,0 +1,23 @@
|
|||
#include<stdio.h>
|
||||
#include<stdlib.h>
|
||||
|
||||
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;
|
||||
}
|
7
pipetofile/single-use-build-and-run.sh
Executable file
7
pipetofile/single-use-build-and-run.sh
Executable file
|
@ -0,0 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
g++ -o main main.cpp
|
||||
|
||||
./main
|
||||
|
||||
rm main
|
4
pipetofile/test-input.txt
Normal file
4
pipetofile/test-input.txt
Normal file
|
@ -0,0 +1,4 @@
|
|||
3wtc1sgn2
|
||||
r11n2g
|
||||
n1r1t4pm3clt2mkaca
|
||||
.
|
74
pipetofile/uninstall.sh
Executable file
74
pipetofile/uninstall.sh
Executable file
|
@ -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"
|
Loading…
Reference in a new issue