Created
July 16, 2021 19:15
-
-
Save positlabs/968775215cfb601ea8be14d3816d1af9 to your computer and use it in GitHub Desktop.
Exports all arproj files in a directory
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 | |
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