linux 常用命令

linux 常用命令

  • 1. 使用openssl查看https证书有效期[^1]
  • 2. 查看文件夹内的文件大小
  • 3. 颜色

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/()/\e[1;36m$1\e[0m/g'

  1. 使用openssl查看https证书有效期 ↩︎

你可能感兴趣的:(总结,linux,运维)