Script Bash: Como executar comandos consecutivamente sem esperar pelo anterior?

4

Em um script bash que executa 2 comandos como este

#!/bin/bash
gedit
nautilus

O Nautilus não inicia antes que o gedit seja fechado? Como posso evitar isso?

    
por NES 12.01.2011 / 20:17

1 resposta

9

Basta colocar gedit no plano de fundo

#!/bin/bash
gedit &
nautilus
    
por shellholic 12.01.2011 / 20:21

Tags