This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This script makes a HandmadeHero directory and populates it as a git repo with the supplied .zip file. | |
# Example: ./hh_to_git.sh handmade_hero_065_source.zip | |
args=("$@") | |
if [ ${#args[@]} -ne 1 ] | |
then | |
echo "Need one argument: the source zip file." |