/
githubmirror
/
commcare-hq
Обзор
Документация
Войти
/
githubmirror
/
commcare-hq
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
scripts/ccz.sh
19 строк
390 B
Jennifer Schweers
Added occz and pccz scripts to HQ repo
10 май 2022, 19:51
10 май 2022, 19:51
b7a8294
Код
Авторство
О чём код?
# zip the contents a directory as a ccz using the name of the current ccz in the directory pccz () { ccz=`ls *.ccz | sed -n 1p` rm -i *.ccz zip -r $ccz * } # move a ccz file to a temp directory and unzip it there occz () { if [ -f $1 ] ; then dir=`mktemp -d` echo $dir mv $1 $dir cd $dir unzip *.ccz else echo "'$1' is not a valid file" fi }