Home  >  Article  >  Operation and Maintenance  >  These Linux tools are amazing! Which one have you used?

These Linux tools are amazing! Which one have you used?

Linux中文社区
Linux中文社区forward
2023-08-03 15:56:54918browse

These Linux tools are amazing! Which one have you used?

ag: Faster recursive search than grep, ack document content.

These Linux tools are amazing! Which one have you used?

tig: Interactively view git projects in character mode, which can replace the git command.

These Linux tools are amazing! Which one have you used?

mycli: mysql client, supports syntax highlighting and command completion, the effect is similar to ipython, and can replace the mysql command .

These Linux tools are amazing! Which one have you used?

##jq: json file processing and formatted display, supports highlighting, and can replace python -m json.tool.

These Linux tools are amazing! Which one have you used?

shellcheck: shell script static checking tool, which can identify grammatical errors and non-standard writing.

These Linux tools are amazing! Which one have you used?

fzf:Fuzzy search tool under the command line, which can interactively intelligently search and select files or content, and cooperate with terminal ctrl -r historical command search is perfect.

These Linux tools are amazing! Which one have you used?

##PathPicker(fpp): Automatically identify directories and files in the command line output, support interaction, and work very well with git it works.

Run the following command:

git diff HEAD~8 --stat | fpp

These Linux tools are amazing! Which one have you used?

htop: Provides a more beautiful and convenient process monitoring tool, replaces the top command.

These Linux tools are amazing! Which one have you used?

glances: A more powerful htop/top replacement.

Search the public account GitHub Ape Backstage and reply "Financial Management" to get a surprise gift package.

htop replaces top, glances replaces htop:

These Linux tools are amazing! Which one have you used?

The information is much richer than htop, and more That's it, right? In addition to command line viewing, glances also provides page services, allowing you to view the status of a server at any time from the page.


axel: Multi-threaded download tool, which can replace curl and wget when downloading files.

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

These Linux tools are amazing! Which one have you used?

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


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

These Linux tools are amazing! Which one have you used?

tmux:终端复用工具,替代screen、nohup。

These Linux tools are amazing! Which one have you used?

script/scriptreplay:  终端会话录制。

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

multitail:多重  tail。

通常你不止一个日志文件要监控,怎么办?终端软件里开多个 tab 太占地方,可以试试这个工具:

These Linux tools are amazing! Which one have you used?

大佬,你用过哪个工具?

The above is the detailed content of These Linux tools are amazing! Which one have you used?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:Linux中文社区. If there is any infringement, please contact admin@php.cn delete