Jakie są te dodatkowe linie wyjściowe w bash?

9

Czasami te wiersze można zobaczyć po uruchomieniu polecenia (losowo):

[1]-  Done                    wget -c http://downloads.sourceforge.net/project/zorin-os/9/zorin-os-9-core-32.iso?r=http%3A%2F%2Fzorinos.com%2Fdownload9.html
[2]+  Done                    ts=1460659842

Pierwszy wiersz to samo polecenie i nie zawsze tak się dzieje. Ale od czasu do czasu aplikacja wiersza poleceń zatrzymuje się bez powrotu do wiersza poleceń, dopóki nie naciśniesz enter; który pokazuje te linie.

Mój system zachowywał się tak dopiero tydzień temu. Czy to problem?

Kaveh Shahbazian
źródło

Odpowiedzi:

20

Prawdopodobnie wydałeś następującą komendę:

wget -c http://downloads.sourceforge.net/project/zorin-os/9/zorin-os-9-core-32.iso?r=http%3A%2F%2Fzorinos.com%2Fdownload9.html&ts=1460659842&something-else

To polecenie zawiera znak specjalny &, który służy do jednoczesnego uruchamiania wielu procesów . To polecenie jest interpretowane jako trzy (lub więcej) poleceń:

# First command (the one that you see after [1]):
wget -c http://downloads.sourceforge.net/project/zorin-os/9/zorin-os-9-core-32.iso?r=http%3A%2F%2Fzorinos.com%2Fdownload9.html
# Second command (the one that you see after [2]):
ts=1460659842
# Third command (the one which output should be above the "Done" lines):
something-else

Oto przykład, który może pomóc Ci lepiej zrozumieć:

# Here I'm launching three 'echo' commands, the first two in background, the third in foreground
andrea@andrea-laptop:~$ echo first & echo second & echo third
[1] 5033    # This is bash telling me that the first process was started with job number 1 and PID 5033
first       # This is the output from the first process
[2] 5034    # This is bash telling me that the second process was started with job number 2 and PID 5034
third       # This is the output from the third process
second      # This is the output from the second process
andrea@andrea-laptop:~$ 
[1]-  Done                    echo first    # This is bash telling me that the first background job has quit
[2]+  Done                    echo second   # This is bash telling me that the second background job has quit

Powinieneś poprawnie cytować adresy URL, aby uniknąć tego i innych nieprzyjemnych efektów:

wget -c 'http://downloads.sourceforge.net/project/zorin-os/9/zorin-os-9-core-32.iso?r=http%3A%2F%2Fzorinos.com%2Fdownload9.html&ts=1460659842&something-else'
Andrea Corbellini
źródło
6
Jest jeszcze jeden powód, dla którego nigdy nie powinieneś ślepo kopiować poleceń terminalu ... Ktoś może utworzyć adres URL someurl.com/index.php&malicious-command- i ludzie po prostu go uruchomią i zepsują system.
Nzall 15.04.16