基础命令
文件管理命令
cat a.txt # 显示文本文件的内容 cat -n a.txt # 显示文本文件的内容(并显示行号) cat -A a.txt # 显示文本文件的内容(含不可见字符) head/tail -n a.txt # 查看指定文件的头部/尾部内容 less/more -n a.txt # 以分页方式查看长文件 od -x a.txt # 以十六进制查看文件 od -o a.txt # 以八进制查看文件 od -d a.txt # 以十进制查看文件 od -b a.txt # 以二进制查看文件 cp file1 file2 # 复制文件或者复制整个目录 scp [email protected]:/home/file1 file2 # 跨网络复制文件或者复制整个目录 touch a.txt # 更新a.txt的最近修改时间到当前时间,不存在则创建一个新文件 mkdir a/b/c -p # 创建空目录 rmdir a # 删除空目录 rm a.txt # 删除文件 rm -r a/ # 删除目录
解压缩命令
权限管理命令(只有root才能执行)
chmod -R 777 dir/file # 修改文件或目录权限 chmod -R ugo+rwx dir/file # 增加文件或目录权限 chmod -R ugo-rwx dir/file # 删除文件或目录权限 chown -R toUser dir/file # 修改文件或目录的所有者 chown -R toUser:toGroup dir/file # 同时修改文件或目录的所有者和所属用户组 chgrp -R toGroup dir/file # 修改文件或目录的所属用户组 chgrp --reference=toFile fromFile # 修改fromFile文件或目录的所属用户组改为同toFile
用户管理命令
进程管理命令
系统管理命令
网络命令