在shell脚本中使用标准输入

时间:2014-11-27 20:31:38

标签: shell variables scripting stdin

我们必须创建一个与标准输入交互的脚本,它是一个文件,我们在其上放了一个键串,但这个练习的难点在于在某些情况下找不到文件,所以我们有将文件名保存到变量

key.sh(keystring)< (文件名)

如何将文件名保存到变量中?

1 个答案:

答案 0 :(得分:0)

key.sh中,您希望拥有这样的脚本:

#!/bin/sh

# assign the input string to the variable filename
filename="$1"

然后你实际上会用key.sh filename

调用脚本