Skip to content

Instantly share code, notes, and snippets.

@tomaspietravallo
Forked from positlabs/spark-batch-export.sh
Created November 2, 2020 17:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomaspietravallo/1abb9aea1e204e7fa7050bb7ba5e5205 to your computer and use it in GitHub Desktop.
Save tomaspietravallo/1abb9aea1e204e7fa7050bb7ba5e5205 to your computer and use it in GitHub Desktop.
#! /bin/bash
# export all arproj found in sub directories. e.g. you want to export several projects in one folder
for i in */*.arproj
do
echo "============================"
/Applications/Spark\ AR\ Studio/Spark\ AR\ Studio.app/Contents/MacOS/sparkTerminalAppleMac export "$i" -d ./
echo "============================"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment