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.

17 lines
272 B
Bash

#!/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.'
;;
esac