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

Release: 2023-08-03 15:56:54
forward
938 people have browsed it

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
Copy after login

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
Copy after login

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
Copy after login

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!

Related labels:
source:Linux中文社区
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!