11 lines
215 B
Bash
Executable file
11 lines
215 B
Bash
Executable file
#!/bin/sh
|
|
dir=$(pwd)
|
|
|
|
# overlay our directories
|
|
test -n "$BROWSER" && test -f /.fzypackage || {
|
|
cp bin/zip /bin/.
|
|
ln -s /bin/zip /bin/zip
|
|
echo 1 > /.zippackage
|
|
echo "[i] zip is now available at /bin/zip"
|
|
}
|
|
|