Stooovie 0 Posted March 17 Share Posted March 17 (edited) I'm not sure... This is what I have as the command in the workflow and it works (set the active directory to Desktop and transcode a video file that I selected in Finder). Adding "exit" or ";exit" doesn't do anything, the Terminal (or iTerm2) window stays open. It does exit, however, when I paste the three lines directly into Terminal. cd /Users/stooovie/Desktop other-transcode {query} exit Thanks! Edited March 17 by Stooovie Link to post Share on other sites
deanishe 1,449 Posted March 17 Share Posted March 17 Yeah. You need to send all the commands at once, not on three separate lines: cd /Users/stooovie/Desktop && other-transcode {query} && exit It’s better to use && than ; because the tab won’t close if something goes wrong, and you’ll be able to see the error message. Stooovie 1 Link to post Share on other sites
Stooovie 0 Posted March 17 Share Posted March 17 That indeed works Great, thanks! Link to post Share on other sites
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now