Add new scripts and install/uninstall

This commit is contained in:
Pim Nelissen
2024-07-15 09:38:57 +02:00
parent b122fe6da4
commit 88205af3a5
10 changed files with 60 additions and 0 deletions

8
uninstall.sh Executable file
View File

@ -0,0 +1,8 @@
#!/usr/bin/bash
PATH=/home/$(whoami)/.local/bin
TO_DELETE=($PATH/pcs*)
NUM_OF_FILES=${#TO_DELETE[@]}
/usr/bin/rm -f ${TO_DELETE[@]}
echo $NUM_OF_FILES scripts removed from $PATH.