9 lines
89 B
Bash
9 lines
89 B
Bash
#!/usr/bin/bash
|
|
|
|
set -e
|
|
|
|
cd firefox/
|
|
jpm run -b /usr/bin/firefox
|
|
|
|
echo "Exiting..."
|
|
cd -
|