Linux CLI - Process Management
Given the following shell session:
$ sleep 100 & [1] 12345 $ sleep 200 & [2] 12346 $ jobs [1]+ Running sleep 100 & [2]- Running sleep 200 &What will be the output of
jobs -l?