1
0
mirror of https://gitea.blesmrt.net/mikaela/gist.git synced 2025-03-09 00:00:38 +01:00

14 lines
159 B
Bash
Raw Normal View History

#!/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