Game project I am working on for #olcCodeJam2020!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
TheGreatConversion/convertto64.sh

5 lines
86 B

rm *.64
for i in "$@"; do
echo "Converting $i to base 64."
base64 $i > $i.64
done