Apa garis-garis output tambahan ini di bash?

9

Terkadang garis-garis ini dapat dilihat setelah menjalankan perintah (secara acak):

[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

Baris pertama adalah perintah itu sendiri & itu tidak selalu terjadi. Tetapi dari waktu ke waktu aplikasi baris perintah berhenti tanpa kembali ke baris perintah, sampai saya menekan enter; yang menunjukkan garis-garis ini.

Sistem saya tidak berlaku seperti ini sampai seminggu yang lalu. Apakah ini masalah?

Kaveh Shahbazian
sumber

Jawaban:

20

Anda mungkin telah mengeluarkan perintah seperti ini:

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

Perintah itu berisi karakter khusus &, yang digunakan untuk menjalankan beberapa proses secara bersamaan . Perintah itu ditafsirkan sebagai tiga (atau lebih) perintah:

# 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

Berikut ini contoh yang dapat membantu Anda memahami lebih baik:

# 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

Anda harus mengutip URL dengan benar untuk menghindari ini dan efek buruk lainnya:

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
sumber
6
Namun alasan lain mengapa Anda tidak boleh membabi buta dengan perintah terminal copypaste ... Seseorang dapat membuat url someurl.com/index.php&malicious-command-di sini dan orang-orang hanya akan menjalankannya dan merusak sistem mereka.
Nzall