You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
280 B
Plaintext
18 lines
280 B
Plaintext
|
6 years ago
|
#!/usr/bin/bash
|
||
|
|
|
||
|
|
# rebuild-iso
|
||
|
|
# compress
|
||
|
|
|
||
|
|
case $1 in
|
||
|
|
'compress')
|
||
|
|
mono /usr/lib/nkit/ConvertToNKit.exe "${@:2}"
|
||
|
|
;;
|
||
|
|
'rebuild-iso')
|
||
|
|
mono /usr/lib/nkit/ConvertToISO.exe "${@:2}"
|
||
|
|
;;
|
||
|
|
*)
|
||
|
|
echo 'Missing action.'
|
||
|
5 years ago
|
exit 1
|
||
|
6 years ago
|
;;
|
||
|
|
esac
|