LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - General (https://www.linuxquestions.org/questions/linux-general-1/)
-   -   background jobs (https://www.linuxquestions.org/questions/linux-general-1/background-jobs-103702/)

seize630 10-14-2003 02:35 AM

background jobs
 
hi,
i 'd like to know that if i put wget into the background with &, how do I bring it to the front, or how can I control how much of the file did it download?

thanx

Crashed_Again 10-14-2003 02:50 AM

fg %1

if its the first job you've put in the background.

arunshivanandan 10-14-2003 02:55 AM

what is the use of running wget in the background with &??i think you have to put the -b option for running wget in the background.
--arun

Crashed_Again 10-14-2003 04:13 AM

Maybe if you are downloading something that will take a while and you want to be able to still use the shell?

yapp 10-14-2003 05:38 AM

For wget, I use screen.

type "screen", start your download, and type "Ctrl+A+D".

use "screen -r" to resume your screen in any other console.

arunshivanandan 10-14-2003 06:05 AM

Quote:

Maybe if you are downloading something that will take a while and you want to be able to still use the shell?
i know about background processes.But ,abt wget,even if you give &,it will continue to output the downloading information to your shell.To run wget in the background,you have to use the -b option.i.e,
wget -b [url]
--arun.

Crashed_Again 10-14-2003 03:16 PM

ah I see. Thanks.


All times are GMT -5. The time now is 02:40 AM.