Je souhaite envoyer des commandes depuis TextWrangler vers le terminal. Même si J'ai trouvé ceci Je ne comprends pas comment cela fonctionne puisque je suis tout nouveau à Unix et à l'exécution d'Applescripts.
tell application "TextWrangler"
set the_selection to (selection of front window as string)
if (the_selection) is "" then
set the_selection to line (get startLine of selection) of front window as string
end if
end tell
tell application "Terminal"
do script with command the_selection in window 1
end tell
J'ai enregistré un Applescript qui ressemble à ceci :
Maintenant, je pense qu'il faut mettre le script dans le dossier TextWrangler script :
- Mais alors, comment envoyer des commandes à Terminal.app ?
- Comment puis-je appuyer sur cmd + enter pour envoyer une ligne de TextWrangler vers le Terminal ?