Skip to content

Commit

Permalink
Create Find People in
Browse files Browse the repository at this point in the history
  • Loading branch information
Monty committed Jan 30, 2021
1 parent bebbe4f commit bea08a2
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions macOS commands/Find People in
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/usr/bin/env bash
# Run iQuery.sh from the Finder

# On macOS, .command files can be executed by double clicking in a Finder window
# or right-clicking and selecting 'Open'. Either will open a Terminal window
# and run them as a shell script.

# Make sure window size is useful
printf '\e[9;2t'
[ "$(tput cols)" -lt 100 ] && printf '\e[8;;100t'
clear

# Make sure we are in the correct directory
DIRNAME=$(dirname "$0")
cd "$DIRNAME"/..

exec ./findPeopleInShows.sh

0 comments on commit bea08a2

Please sign in to comment.