How do I get the last non-empty line of a file using tail in Bash?

前端 未结 7 566
慢半拍i
慢半拍i 2020-12-24 12:26

How do I get the last non-empty line using tail under Bash shell?

For example, my_file.txt looks like this:

hello

7条回答
  •  余生分开走
    2020-12-24 13:14

    You can use Awk:

    awk '/./{line=$0} END{print line}' my_file.txt
    

    This solution has the advantage of using just one tool.

提交回复
热议问题