Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using aliases with nohup

Why doesn't the following work?

$ alias sayHello='/bin/echo "Hello world!"'
$ sayHello 
    Hello world!
$ nohup sayHello
    nohup: appending output to `nohup.out'
    nohup: cannot run command `sayHello': No such file or directory

(the reason I ask this question is because I've aliased my perl and python to different perl/python binaries which were optimized for my own purposes; however, nohup gives me troubles if I don't supply full path to my perl/python binaries)

like image 749
asf107 Avatar asked Feb 15 '12 21:02

asf107


People also ask

Do you need ampersand with Nohup?

To run a nohup command in the background, add an & (ampersand) to the end of the command. If the standard error is displayed on the terminal and if the standard output is neither displayed on the terminal, nor sent to the output file specified by the user (the default output file is nohup. out), both the ./nohup.

Which shells support aliases?

Please note that the alias command is built into a various shells including ksh, tcsh/csh, ash, bash and others.

What is the use of & in Nohup?

To start a process in the background, use the '&' symbol after the command. It will execute our process in the background. For example, if we want to ping javatpoint.com, execute the command as follows: nohup ping javatpoint.com &


1 Answers

Because the shell doesn't pass aliases on to child processes (except when you use $() or ``).

$ alias sayHello='/bin/echo "Hello world!"'

Now an alias is known in this shell process, which is fine but only works in this one shell process.

$ sayHello 

Hello world!

Since you said "sayHello" in the same shell it worked.

$ nohup sayHello

Here, a program "nohup" is being started as a child process. Therefore, it will not receive the aliases. Then it starts the child process "sayHello" - which isn't found.

For your specific problem, it's best to make the new "perl" and "python" look like the normal ones as much as possible. I'd suggest to set the search path.

In your ~/.bash_profile add

export PATH="/my/shiny/interpreters/bin:${PATH}"

Then re-login.

Since this is an environment variable, it will be passed to all the child processes, be they shells or not - it should now work very often.

like image 79
Danny Milosavljevic Avatar answered Sep 22 '22 23:09

Danny Milosavljevic