mirror of
https://github.com/alexanderepstein/Bash-Snippets
synced 2018-11-08 02:59:35 +01:00
11 lines
176 B
Bash
11 lines
176 B
Bash
|
#!/bin/bash
|
||
|
# Author: Alexander Epstein https://github.com/alexanderepstein
|
||
|
cd currency
|
||
|
./uninstall.sh || exit 1
|
||
|
cd ..
|
||
|
cd stocks
|
||
|
./uninstall.sh
|
||
|
cd ..
|
||
|
cd weather
|
||
|
./uninstall.sh
|