|
|
#1 |
|
Simple Input Output Script
I'm just looking for a way to be able to enter 3 different variables a URL, a Number and a Platform.
I would then like the output to be URL&arcNumber%aPlatform I tried making a few automator scripts and looking for a program or two but haven't been able to get it done right. I would appreciate this being exported to the clipboard or a simple text edit window. I am using this to upload tracked URL's to my sites and it would be a lot easier with a script then copying and pasting on my own everytime. |
|
|
|
0
|
|
|
#2 |
|
#!/bin/bash
echo "enter a URL" read URL echo "ener a Number" read Number echo "enter a Platform" read Platform echo "$URL&arc$Number%a$Platform" |
|
|
|
0
|
|
|
#3 |
|
If you want that to go to the clipboard:
Code:
#!/bin/bash echo "enter a URL" read URL echo "ener a Number" read Number echo "enter a Platform" read Platform echo -n "$URL&arc$Number%a$Platform" | pbcopy |
|
|
|
0
|
|
|
#4 |
|
Or in AppleScript
Since you didn't specify a language, here's a way of doing it in AppleScript:
Code:
set theURL to text returned of (display dialog "Enter a URL" default answer "") set theNumber to text returned of (display dialog "Enter a number" default answer "") set thePlatform to text returned of (display dialog "Enter a platform" default answer "") set the clipboard to theURL & "&arc" & theNumber & "%a" & thePlatform |
|
|
|
0
|
|
|
#5 |
|
Thank you very much all! I will start checking them out now I appreciate all the help knew it was easy sometimes you just need another persons help!
|
|
|
|
0
|
![]() |
|
| Tags |
| applescript, input, output, text |
«
Previous Thread
|
Next Thread
»
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
All times are GMT -5. The time now is 10:02 AM.







Linear Mode
