gist/gayming/playstation2/CHT/install-cht.bash
2023-05-18 12:41:11 +03:00

14 lines
162 B
Bash
Executable File

#!/usr/bin/env bash
set -x
CHTDIR=~/PS2/CHT
mkdir -p $CHTDIR
for chtfile in *.cht; do
cat $chtfile >$CHTDIR/$chtfile
done
chmod -R 777 $CHTDIR
set +x