An amazing project that generates micro reports from tournament results
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.
|
#!/bin/sh
|
|
PATH=/bin:/usr/bin:/usr/libexec
|
|
|
|
FILE_TEMPLATES_DIR="$HOME/Library/Developer/Xcode/Templates/File Templates/Realm"
|
|
mkdir -p "$FILE_TEMPLATES_DIR"
|
|
|
|
for dir in "file_templates/*/"
|
|
do
|
|
cp -R ${dir%*/} "$FILE_TEMPLATES_DIR"
|
|
done
|
|
|