在Kali Linux shell中将输出转换为大写,你可以使用以下命令:
echo "your text" | tr -s '[:lower:]' '[:upper:]'
例如,要将"hello world"转换为大写,可以执行以下命令:
echo "hello world" | tr -s '[:lower:]' '[:upper:]'
推荐的腾讯云相关产品:腾讯云虚拟专用服务器(Virtual Private Server,VPS),产品介绍链接地址:https://cloud.tencent.com/product/cvm
echo "your text" | awk '{ print toupper($0) }'
例如,要将"hello world"转换为大写,可以执行以下命令:
echo "hello world" | awk '{ print toupper($0) }'
推荐的腾讯云相关产品:腾讯云云服务器(Cloud Virtual Machine,CVM),产品介绍链接地址:https://cloud.tencent.com/product/cvm
领取专属 10元无门槛券
手把手带您无忧上云