This file contains 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/sh | |
if [ $# -ne 2 ] | |
then | |
echo "Pass 2 params" | |
echo -e "show_app.sh <Window Title to check for> <app to open>" | |
echo -e "\nNotes\n\t<Window url> should be an exact string match" | |
echo -e "\t<app to open> should be path to the executable" | |
exit | |
fi |