shell命令相当于按下键盘上的Enter键

时间:2011-01-05 11:26:04

标签: unix shell keyboard enter

我想在我的bash shell脚本中添加一个shell命令,以便在执行脚本时,它执行的操作等同于按下键盘上的enter键,然后执行脚本中的其余命令

例如:script.sh

#! /bin/bash

<command equivalent to pressing enter key>
echo "hi"

尖括号之间应该存在什么,以便输出

$sh script.sh
$
hi
$

2 个答案:

答案 0 :(得分:2)

在Windows上;

echo.
echo hi
echo.

在Linux上;

echo
echo hi
echo

答案 1 :(得分:1)

使用'read'命令:

#!/bin/bash

read x
echo "hi"