Skip to content

Instantly share code, notes, and snippets.

@jpaulickcz
Created December 2, 2022 07:05
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 jpaulickcz/d383b696d5cdd18349cf6504e9907a2a to your computer and use it in GitHub Desktop.
Save jpaulickcz/d383b696d5cdd18349cf6504e9907a2a to your computer and use it in GitHub Desktop.
macOS one liners
# Check if app is running and if not, open it
pgrep PhotoSync >/dev/null 2>&1; if [ $? -eq 0 ]; then :; else open /Applications/PhotoSync.app; fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment