提升工作效率的Linux命令

ag

比grep,ack更快的递归搜索文件内容

[root@rabbitmq-2 html]# ag 'redis'
redis_pass.txt
1:#redis缓存ip地址和端口
2:spring.redis.host = 10.10.10.1
3:spring.redis.port=16379
4:spring.redis.password=123456

tig

字符模式下交互查看git项目, 可以替代git命令

mycli

mysql客户端,支持语法高亮和命令补全,效果类似ipython,可以替代mysql命令。

 mkdir ~/.pip/
 cat > ~/.pip/pip.conf <<EOF
 [global]
 index-url = https://mirrors.aliyun.com/pypi/simple/

[install]
trusted-host=mirrors.aliyun.com
EOF
   

yum install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel libffi-devel gcc make
wget https://www.python.org/ftp/python/3.8.0/Python-3.8.0b3.tgz
tar -xvf Python-3.8.0b3.tgz
cd Python-3.8.0b3
./configure --prefix=/app/python/python3.8
make & make install
ln -s /app/python/python3.8/bin/python3.8 /usr/bin/python3.8
ln -s /app/python/python3.8/bin/pip3.8 /usr/bin/pip3.8
 pip3.8 install mycli


pip3.8 install mycli
systemctl start mariadb
mycli

vim /usr/bin/mycli
修改前 #!/usr/bin/python2
修改后 #!/usr/bin/python3.8

提升工作效率的Linux命令

jq

** **json文件处理以及格式化显示,支持高亮,可以替换python -m json.tool。

shellcheck

shell脚本静态检查工具,能够识别语法错误以及不规范的写法

fzf

命令行下模糊搜索工具,能够交互式智能搜索并选取文件或者内容,配合终端ctrl-r历史命令搜索简直完美。

PathPicker(fpp)

在命令行输出中自动识别目录和文件,支持交互式,配合git非常有用。
运行以下命令:

git diff HEAD~8 --stat | fpp

htop

提供更美观、更方便的进程监控工具,替代top命令

glances

更强大的 htop / top 代替者。
htop 代替 top,glances 代替 htop

信息比 htop 丰富了不少,更全了,对吧?除了命令行查看外,glances 还提供页面服务,让你从页面上随时查看某服务器的状态;

提升工作效率的Linux命令

axel

多线程下载工具,下载文件时可以替代curl、wget

axel -n 20 http://centos.ustc.edu.cn/centos/7/isos/x86_64/CentOS-7-x86_64-Minimal-1511.iso

rz/sz

交互式文件传输,在多重跳板机下传输文件非常好用,不用一级一级传输

cloc

代码统计工具,能够统计代码的空行数、注释行、编程语言

[root@rabbitmq-2 html]# cloc ecology.sql 
       1 text file.
       1 unique file.                              
       0 files ignored.

github.com/AlDanial/cloc v 1.70  T=0.18 s (5.5 files/s, 110621.7 lines/s)
-------------------------------------------------------------------------------
Language                     files          blank        comment           code
-------------------------------------------------------------------------------
SQL                              1             74            221          19878
-------------------------------------------------------------------------------

script/scriptreplay

终端会话录制

# 录制
script -t 2>time.txt session.typescript
# your commands
# 录制结束
exit
# 回放
scriptreplay -t time.txt session.typescript

11

上一篇:丈量你的代码,从cloc开始


下一篇:window10安装cloc