Linux命令总结

环境:Ubuntu

一、系统配置相关

# 查看内核版本
cat /proc/version
uname -a
# 查看系统版本
lsb_release -a
cat /etc/issue
# 查看用户列表
cat /etc/passwd

二、数据处理相关

1.使用grep抓取数据

# 处理文件
grep [key] [file]

# 使用管道
[string list] | grep [key]

2.使用cat等工具显示数据

# 带行号显示文本
cat -n [file]

# 每行line_number个字母,显示文本
fold -w [line_number:number] [file]

 3.使用tr替换文字

[stream] | tr [old charactes] [new characters]

 

三、网络相关

# 查看网络信息等
# 键入ip,根据提示操作
ip [...]

 

Linux命令总结

上一篇:Linux进程间通信-semaphore信号量


下一篇:shell 里 使用while 循环行读取文件