A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
-bash: tac: command not found #Debian apt-get install coreutils #Ubuntu apt-get install coreutils #Alpine apk add coreutils #Arch Linux pacman -S coreutils #Kali Linux apt-get install coreutils #Fedora dnf install coreutils #Raspbian apt-get install coreutils #Docker docker run cmd.cat/tac tac
tac(即 cat
反向)像 cat 命令一样,将每个文件连接到标准输出,但顺序相反:逐行打印,首先打印最后一行。这对于检查按时间顺序排列的日志文件很有用(例如),其中文件的最后一行包含最新的信息。
如果没有指定文件,或者文件被指定为 “-”,tac 将反转标准输入的内容。
tac [OPTION] ... [FILE] ... #返回状态为成功除非给出了非法选项或非法参数。
-b, --before 在之前而不是之后连接分隔符。 -r, --regex 将分隔符作为基础正则表达式(BRE)处理。 -s, --separator=STRING 使用STRING作为分隔符代替默认的换行符。 --help 显示帮助信息并退出。 --version 显示版本信息并退出。
反向打印 file1.txt 的行,从最后一行到第一行。
tac file1.txt