diff options
author | 2022-03-15 00:24:12 +0530 | |
---|---|---|
committer | 2022-03-15 00:24:12 +0530 | |
commit | 4e5d83326d0094b2c344abbf598c14d04c28260b (patch) | |
tree | 7bc790cede04f61860e3e5bf811f557c8a601253 /uninstall | |
parent | ab19ed42e1495bf83434ea6dd68b8df755913320 (diff) | |
download | shopno-os-log-sync-4e5d83326d0094b2c344abbf598c14d04c28260b.tar.gz shopno-os-log-sync-4e5d83326d0094b2c344abbf598c14d04c28260b.zip |
(xprofile) | changing aproach to install/run watch_log script | adding install uninstall script
Diffstat (limited to 'uninstall')
-rwxr-xr-x | uninstall | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/uninstall b/uninstall new file mode 100755 index 0000000..16b93db --- /dev/null +++ b/uninstall @@ -0,0 +1,13 @@ +#!/bin/bash +sudo rm -rf /usr/share/Watcher/ +sudo rm -rf /usr/local/bin/watcher + +echo "Do you want to delete your raw_data files?? y or n (default: n)" +read yes_or_no + +if [[ $yes_or_no = y ]]; then + rm -rf ~/.cache/Watcher/ +else + echo "Nice Decision either way you might use this app in future" +fi + |