12 lines
107 B
Plaintext
12 lines
107 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
COMMAND="$1"
|
||
|
|
||
|
case "$COMMAND" in
|
||
|
add|remove)
|
||
|
zipl > /dev/null
|
||
|
;;
|
||
|
*)
|
||
|
;;
|
||
|
esac
|