Skip to content

Instantly share code, notes, and snippets.

View exaland's full-sized avatar

Exaland Concept exaland

  • Exaland Concept
View GitHub Profile
@exaland
exaland / ds_store_removeFile.txt
Last active January 26, 2020 20:05
Remove DS_Store file with underscore prefix files
# Remove all Underscore prefix files DS_Store
- Type this command in Terminal
sudo find / -name "._*" -exec rm -rf {} \;
@exaland
exaland / ios-simulator-build-app.markdown
Last active June 15, 2021 02:16
iOS Simulator Build APP for export and test your app

Make Build Ios from Simulator

ditto -ck --sequesterRsrc --keepParent `ls -1 -d -t ~/Library/Developer/Xcode/DerivedData/*/Build/Products/*-iphonesimulator/*.app | head -n 1` /path/ofyourchoice/MyApp.zip

Test your app

ios-sim launch /path/to/your-app.app