linux 常用命令
1. 使用openssl查看https证书有效期1
openssl s_client -connect <HOST:PORT> 2>/dev/null | openssl x509 -noout -dates
openssl s_client -servername <NAME> -connect <HOST:PORT> 2>/dev/null | openssl x509 -noout -dates
2. 查看文件夹内的文件大小
du -h –-max-depth=1 /path/to/dir
3. 颜色
| perl -pe 's/(<keyword>)/\e[1;36m$1\e[0m/g'
文章评论