Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的 bash shell 脚本中添加一个 shell 命令,以便在执行脚本时,它会执行相当于按键盘上的 enter 键的操作,然后执行脚本中的其余命令
例如:脚本.sh
#! /bin/bash <command equivalent to pressing enter key> echo "hi"
尖括号之间应该存在什么,以便输出应该是
$sh script.sh $ hi $
在 Windows 上;
echo. echo hi echo.
在 Linux 上;
echo echo hi echo
使用“读取”命令:
#!/bin/bash read x echo "hi"