Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个非常大的文件,我想使用以下命令检查前 100 行head:
head
head -n100 large.file
我真的很想让空格像\t \r,... 可见。我怎样才能做到这一点。我没有在man head.
\t
\r
man head
你可以用 Perl 做到这一点
echo 'fooo bar' | perl -pe 's/( +)/\033[41m$1\033[00m/g'
\033[41m启用红色并\033[00m禁用它。Perl 的-pe工作类似于sed并且只需要将这些特殊序列放在空格周围。
\033[41m
\033[00m
-pe
sed
要突出显示换行符,请将正则表达式的第一部分更改为
s/([ \n]+)/...rest of the expression