diff --git a/gayming/playstation2/CHT/install-cht.bash b/gayming/playstation2/CHT/install-cht.bash new file mode 100755 index 0000000..79d6e3e --- /dev/null +++ b/gayming/playstation2/CHT/install-cht.bash @@ -0,0 +1,13 @@ +#!/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