Last updated
Last updated
查看端口号
awk
统计前10 IP:
服务列表
日期
清理log
清理磁盘
du -h --max-depth=1 查看当前目录,哪个文件占用最大
du -h -d 1
du -sh * 查看当前目录下各文件及文件夹占用大小
du -s /usr/* | sort -rn 按大小倒序排序
mac:
du -d 1 -h | sort -rn
找到没有被删除的较大的文件
lsof | grep deleted
ssh copy
ssh-copy-id -i ~/.ssh/id_rsa.pub 用户名字@192.168.x.xxx
压缩
解压
1、*.tar 用 tar –xvf 解压
2、*.gz 用 gzip -d或者gunzip 解压
3、.tar.gz和.tgz 用 tar –xzf 解压
4、*.bz2 用 bzip2 -d或者用bunzip2 解压
5、*.tar.bz2用tar –xjf 解压
6、*.Z 用 uncompress 解压
7、*.tar.Z 用tar –xZf 解压
8、*.rar 用 unrar e解压
9、*.zip 用 unzip 解压
软连接
curl
查看当前ssh的用户
查看ssh日志
关机
cat 中文乱码
cat xxx | iconv -f GBK -t UTF-8
bash脚本
$0 这个程式的执行名字
$n 这个程式的第n个参数值,n=1..9
$* 这个程式的所有参数,此选项参数可超过9个。
$@ 同上
$# 这个程式的参数个数