AppleScript Help Assistance - fix errors make it work
Budget: $10 – $30 USD
I have an applescript that is not complete. I need to take the variable grabbed from the file name and press it into a shell command to replace the variable and run the shell script. I need this completed within the next couple hours. Here is the apple script i have so far:
on run {input, parameters}
tell application "Finder"
set fileName to name of file input
set AppleScript's text item delimiters to "."
if number of text items of fileName > 1 then
set fileName to text items 1 thru -2 of fileName as text
end if
fileName
end tell
do shell script "/Users/nathan/Desktop/run-me.sh " & fileName
- - - - - -
The .sh script looks like this: #!/bin/bash
curl 'https://api.twilio.com/2010-04-01/Accounts/ACa91550bf0cd09f94792c36fff54b1392/Messages.json' -X POST \\
--data-urlencode 'To=+$fileName' \\
So I just need to replace that $fileName variable inside the .sh script with the text file name gathered from the file in finder. Help me out real quick?
on run {input, parameters}
tell application "Finder"
set fileName to name of file input
set AppleScript's text item delimiters to "."
if number of text items of fileName > 1 then
set fileName to text items 1 thru -2 of fileName as text
end if
fileName
end tell
do shell script "/Users/nathan/Desktop/run-me.sh " & fileName
- - - - - -
The .sh script looks like this: #!/bin/bash
curl 'https://api.twilio.com/2010-04-01/Accounts/ACa91550bf0cd09f94792c36fff54b1392/Messages.json' -X POST \\
--data-urlencode 'To=+$fileName' \\
So I just need to replace that $fileName variable inside the .sh script with the text file name gathered from the file in finder. Help me out real quick?