In applescript I use the following code to set the clipboard to a list (array): set the clipboard to {"4", "4", "5"}
Is it possible to assign the items of the list in the clipboard to a bash array? In applescript, the code for assigning the list items (from the clipboard) to a variable looks like this: set theList to list of (the clipboard)
. What would be the bash equivalent for this code?
Thank you!