0

I have a script to open chrome with some custom arguments:

/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --use-system-ssl --use-spdy=off 

I need to run this and immediately close the process running it without killing chrome. Is there some way to do this?

2 Answers 2

1

Say your script was run_chrome. Then you could do {run_chrome &} && disown;

Sign up to request clarification or add additional context in comments.

1 Comment

there IS something like "disown". Thats what I needed, thanks
1

Just run it in background/fork:

#/bin/sh /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --use-system-ssl --use-spdy=off & 

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.