2
为什么这个grep -v无法正常工作?
我有一个与grep -v查询有关的奇怪问题。请允许我解释一下: 要显示连接,我使用who: $ who harry pts/0 2016-12-08 20:41 (192.168.0.1) james pts/1 2016-12-08 19:28 (192.168.0.1) timothy pts/2 2016-12-08 02:44 (192.168.0.1) tty我的终端的电流是pts/0 $ tty /dev/pts/0 $ tty | cut -f3-4 -d'/' pts/0 我尝试使用排除自己的连接grep -v $(tty | cut -f3-4 -d'/')。该命令的预期输出应为who,而无需我的连接。但是,输出是最意外的: $ who | grep -v $(tty | cut -f3-4 -d'/') grep: a: …
12
command-line
grep
tty