Geany 是我的主要文本编辑器。
我正在寻找一种方法来打开一个文本文件,显示文件的最后几行并且能够编辑该文件。
这对于查看长日志文件的末尾很有用。
最好使用 Geany。
答案1
--line
(缩写的)命令-l
行选项指定打开文件后转到哪个行号。
据推测,指定一个非常高的数字,如 10 亿(1000000000)应该可以确保它每次都能到达最后一行。
答案2
由于评论很难编辑,所以我这样做了。
#!/bin/bash
# Ubuntu_Mate 18.04 LTS
#
# Look at end of text file using Geany. tail not needed.
#
# MUCH HELP from thomasrutter at https://askubuntu.com/
#
#
# syslog is in /var/log
cd /home/andy/Downloads
# Send syslog to text file
cat /var/log/syslog > syslog.txt
# using geany, open syslog at the end
geany -l 10000000 syslog.txt
“放弃总是太早。”