I'm trying to get the names of all processes in "screen -list"
Unfortunately I already fail at the loop, because
for PLINE in `screen -list | grep 'tached)'`; do
echo "$PLINE"
done
outputs
3698.processname
(16/08/12
12:59:37)
(Detached)
but my expected output was
3698.processname (16/08/12 12:59:37) (Detached)
like when directly type screen -list | grep 'tached)' into the console.
What I was trying to do if this loop would've worked, is using cut -d '.' -f 2 and then cutting off the result string after the first whitespace found. ( Which Im also not quite sure how to do yet, all I know is something with %' ' )
So, I think it's pretty obvious that I have not much of a clue in bash script, thus I'm open for more elegant suggestions to do what Im trying to do.
(Edit) Solution:
for PLINE in `screen -list | grep 'tached)' | awk -F '[ \t\n\v\r.]' '{print $3}'`; do
echo $PLINE
done