Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

What Does This Bash Shell Message Mean 1

Status
Not open for further replies.

Live2Die

Technical User
May 5, 2004
104
CA
I use putty to remotely control my linux box, but If i do something like bring up a man page and close it by using CTRL+Z and then go to logout I get this bash message.

"There Are Stopped Jobs"

What does this mean. Is it bad, or can i just ignore it.

--------------------
Sometimes overlooking the little things causes headaches that are unneeded
 
You're getting that message because you're using CTRL+Z on your invocation of the man app.

CTRL+Z, in a bash shell, takes the foreground application and moves it to the background. [Generally, when I want to quit man, I just hit the Q (for "quit") key.] So instead of closing man, you're moving it to the background. So when you try to log out, bask correctly reminds you that you have jobs in the background.

To answer your question, I recommend that you never ignore the "stopped jobs" question. Instead you should at a minimum run the [tt]jobs[/tt] command to see what you've left behind.

See also: [tt]man jobs[/tt], [tt]man fg[/tt]


Want the best answers? Ask the best questions!

TANSTAAFL!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top