我想在我的bash shell脚本中添加一个shell命令,以便在执行脚本时,它执行的操作等同于按下键盘上的enter键,然后执行脚本中的其余命令
例如:script.sh
#! /bin/bash
<command equivalent to pressing enter key>
echo "hi"
尖括号之间应该存在什么,以便输出
$sh script.sh
$
hi
$
答案 0 :(得分:2)
在Windows上;
echo.
echo hi
echo.
在Linux上;
echo
echo hi
echo
答案 1 :(得分:1)
使用'read'命令:
#!/bin/bash
read x
echo "hi"