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.
使用 ls -1 后我尝试以下代码失败
awk -F '\n' '{ print $1 }'
如何获得终端的第一行?
头-n 1
可能会更容易。
如果您坚持使用 awk,请执行
awk 'NR == 1 { 打印 }'
awk '{print $0 ; exit(0); }'
我同意这head -1更容易。
head -1
其他选项:
sed q file