Applescript: Run or Call a Shell Script

Applescript: Run or Call a Shell Script

last updated in Categories , ,

 

How do run a shell script with an AppleScript? How do I integrate shell scripts into AppleScript? How do I call a shell script called /path/to/chkhost.sh using an applescript?

AppleScript is a scripting for Mac OS. It is the Mac OS scripting interface, which is meant to operate in parallel with the graphical user interface. With AppleScript, you can control, and communicate among, applications, databases, networks, Web services, and even the operating system itself.

 

 

 

Running Shell Commands From AppleScript Scripts

You can easily execute shell commands from your AppleScript using the following syntax:

do shell script "command"
do shell script "command1; command2"
set variableName to do shell script "command"
set variableName to do shell script "command1; command2"
do shell script "/path/to/yourscript.sh"
do shell script "/bin/tcsh /path/to/yourscript.csh"
do shell script "/bin/tcsh -c  'command1'"

The following script statement uses a do shell script command to get list of the files from the current directory and store it into the AppleScript variable filesLists:

set filesLists to do shell script "ls"

Task: Pass an AppleScript Variable To Shell Command

Use the following syntax (h is an AppleScript variable which is passed to traceroute shell command):

set h  to "cyberciti.biz"
do shell script "traceroute " & h
5 (1)
Article Rating (1 Votes)
Rate this article
Attachments
There are no attachments for this article.
Comments
There are no comments for this article. Be the first to post a comment.
Full Name
Email Address
Security Code Security Code
Related Articles RSS Feed
How to recover error - Audit error: dispatch err (pipe full) event lost
Viewed 25085 times since Tue, Aug 6, 2019
Install Security Patches or Updates Automatically on CentOS and RHEL
Viewed 1634 times since Fri, Oct 26, 2018
Linux get the list of FC HBA’s and WWPN
Viewed 3076 times since Tue, May 22, 2018
“Too many authentication failures” with SSH
Viewed 5478 times since Mon, May 21, 2018
LVM: Recovering Physical Volume Metadata
Viewed 12984 times since Sat, Jun 2, 2018
Manage SSH Key File With Passphrase
Viewed 2127 times since Tue, Mar 5, 2019
Configuring VLAN interfaces in Linux
Viewed 5218 times since Mon, May 21, 2018
logrotate - rotates, compresses, and mails system logs.
Viewed 1602 times since Fri, Nov 30, 2018
How To Run Multiple SSH Command On Remote Machine And Exit Safely
Viewed 4072 times since Tue, Aug 6, 2019
Use inotify-tools on CentOS 7 or RHEL 7 to watch files and directories for events
Viewed 13833 times since Fri, Jul 27, 2018