GNU datamash is a command-line program which performs basic numeric,textual and statistical operations (e.g. count, sum, min, max, mean, 1st quartile, median, 3rd quarile, IQR, stdev, string coalescing)on input textual data files.……【阅读全文】
Tag Archives: 命令
9月
16
12月
12
[荐]增强版cd导航
z是一个相当实用的cd命令增强脚本,目前支持bash和zsh。使用z,我们能够在Linux命令行实现更加快速的导航。……【阅读全文】
12月
04
[荐]explainshell和ShellCheck
explainshell
explainshell: write down a command-line to see the help text that matches each argument (support for control flows (if/while/etc.) and command substitutions will be added later on)……【阅读全文】
10月
13
LaTeX文档的自动编译与实时预览
管理LaTeX源代码文档,最开始的时候,我是在终端中手动输入编译命令,每次都需要输入好几次命令才能得到最终的文档。之后,为了简化操作,自习了Makefile,使用make来编译、预览LaTeX文档,效率大大提高,但每次都要适当修改Makefile,仍有一定的繁琐。今天,偶然发现一个编译、预览LaTeX文档的利器——latexmk,强烈推荐给使用LaTeX制作文档的朋友们。此处对于使用make和latexmk编译预览LaTeX文档分别做一个简要的介绍。……【阅读全文】
7月
15
在Windows中高效处理文本数据(续)——MobaXterm
2月
28
常用的文本处理shell命令
-
显示属性,查看内容
file:确定文件类型
cat:连接文件并在标准输出上输出
tac:反转显示文件
dog:better than cat
nl:显示时输出行号
more:在显示器上阅读文件的过滤器
less:opposite of more,一次显示一页文本
head:输出文件的开始部分
tail:输出文件的末尾部分
Continue reading