Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Assign action to variable in Automator for use in Shell Script

enter image description here

Ok, this thing is driving me crazy right now. So Action 1 Chooses a Folder (I want to save that folder's path as var_1) and Action 3 Selects a File (I want to save this file's path as var_2)

so in the end . . .

var_1 = '/Users/Prometheus/Desktop/'
var_2 = '/Users/Prometheus/Documents/a.txt'

So how do I use these variables and their values inside of Shell Script with python ? I can't use sys.argv because they are set to some weird variables

I usually put 'Ask for Finder Item' > Run Shell Script and then

import sys

variable = open(argv[1]).read()

but i can't use that in this case . my scripts are in python so i'd rather stay in python because i don't know any other language

like image 338
O.rka Avatar asked Dec 25 '22 19:12

O.rka


1 Answers

The Automator variables are only used in the Automator workflow. The variable themselves are not directly accessible to either a shell script or a Python script. The Run Shell Script action allows you to pass the values of particular variables to a shell script in either of two ways: either piping them in through stdin or by passing them as execution arguments. For this sort of use case, the latter is easier. To start with, you need to pick Automator variable names in the Set Value of Variable and Get Value of Variable actions so the values selected can be retained between actions. Here's a very rudimentary workflow example where I've selected two folders:

enter image description hereenter image description here

like image 173
Ned Deily Avatar answered Dec 28 '22 09:12

Ned Deily