linux中输出无法重定向到文件--script解决问题

1. 遇到的问题

         最近在写脚本的时候,想要获取jdk版本信息,就直接写了java -version或java -version | grep version,想要通过执行命令的变量取到jdk的版本值,但是发现并没有正确获取出来;而且将命令结果通过将错误输出转成标准输出之后重定向到文件里面,发现也是失败的;进而发现了好些命令都有这些问题,例如nc -zv ip port 想要获取主机端口信息,也是不行。
linux中输出无法重定向到文件--script解决问题_第1张图片

2. 解决方式

         查询了好久,没有得到为什么命令后的结果是无法被获取的,不过找的了其他的一些解决方案,就是script 命令。
         script makes a typescript of everything printed on your terminal. It is useful for students who need a hardcopy record of an interactive session as proof of an assignment, as the typescript file can be printed out later with lpr(1).
         If the argument file is given, script saves all dialogue in file. If no file name is given, the typescript is saved in the file typescript.
linux中输出无法重定向到文件--script解决问题_第2张图片

将命令重定向到x.log文件,之后可以通过读取x.log获取信息:
# script -c 'java -version' -q x.log

直接grep想要的信息,但script已经实际将命令完整结果写入了当前路径下的typescript文件中:
# script -c 'java -version'| grep version

linux中输出无法重定向到文件--script解决问题_第3张图片

在这里插入图片描述
linux中输出无法重定向到文件--script解决问题_第4张图片

你可能感兴趣的:(自动运维,linux,运维)