假设当我执行命令然后 grep 它以获得特定输出时。
例如:man cat|grep "已写"
这给出了作者的名字。
我的问题是我想通过阅读来做到这一点。
这是我的脚本的示例:
#!/bin/bash
read variable #lets say input is: man cat|grep "Written"
$variable
这似乎不起作用。我需要这个来工作,因为我正在做一个更大的脚本,而这部分让我陷入困境。任何提示表示赞赏。
假设当我执行命令然后 grep 它以获得特定输出时。
例如:man cat|grep "已写"
这给出了作者的名字。
我的问题是我想通过阅读来做到这一点。
这是我的脚本的示例:
#!/bin/bash
read variable #lets say input is: man cat|grep "Written"
$variable
这似乎不起作用。我需要这个来工作,因为我正在做一个更大的脚本,而这部分让我陷入困境。任何提示表示赞赏。