ezpp-oppai-ap/test/pack_suite
2021-06-25 20:26:13 +02:00

12 lines
185 B
Bash
Executable File

#!/bin/sh
dir="$(dirname "$0")"
wdir="$(realpath "$dir")"
olddir="$(pwd)"
cd "$wdir" || exit $?
tar -zcvf test_suite_$(date +%F).tar.gz test_suite/*.osu
res=$?
cd "$olddir"
exit $res