🎴 Flashcard Mode
Linux Commands and Shell Scripting
Card1 / 20
Mastered0
Review0
QuestionClick to flip
I know linux can multitask -- how do I switch between programs?
AnswerClick to flip back
A
fg,bg, &
💡 Explanation:
Linux uses job control for multitasking: fg brings a background job to foreground, bg resumes a stopped job in background, and & after a command runs it in background initially. Option C is incomplete (missing &), and 'switch' is not a valid Linux command.