Skip to content

Instantly share code, notes, and snippets.

@positlabs
Created July 16, 2021 19:15
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 positlabs/968775215cfb601ea8be14d3816d1af9 to your computer and use it in GitHub Desktop.
Save positlabs/968775215cfb601ea8be14d3816d1af9 to your computer and use it in GitHub Desktop.
Exports all arproj files in a directory
#!/bin/bash
for project in **/*.arproj;
do /Applications/Spark\ AR\ Studio.app/Contents/MacOS/sparkTerminalAppleMac export $project;
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment