-
-
Save mattbanks/3004901 to your computer and use it in GitHub Desktop.
AppleScript: iTerm tail PHP error log
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
tell application "iTerm" | |
activate | |
set t to (make new terminal) | |
tell t | |
tell (make new session at the end of sessions) | |
exec command "tail -f /Applications/MAMP/logs/php_error.log" | |
end tell | |
end tell | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment