gist/gayming/playstation2/CHT/install-cht.bash

14 lines
162 B
Bash
Raw Normal View History

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