Comment on Linux Commands for DevelopersparentComments−yesbabyyes14y`paste` is also very useful together with stdin redirection and subshells. E.g.: paste <(ping 8.8.8.8) <(while true; do iwconfig wlan0 | grep "Bit Rate"; sleep 1; done)−ralph14yThey could drift. Better to do a one-ping ping and run iwconfig once in a loop.
Comments
`paste` is also very useful together with stdin redirection and subshells. E.g.:
They could drift. Better to do a one-ping ping and run iwconfig once in a loop.