问题描述
- 关于linux read -p的一个问题
-
我写了一个脚本test.sh,内容如下:
#!/bin/sh
read -p "Enter the first interger:" FIRST
echo $FIRST我用source test.sh没有问题,但是用sh test.sh时 read -p就会报错,请问这个是什么原因?谢谢了~
解决方案
试试sh -x test.sh
时间: 2024-11-13 06:31:56
我用source test.sh没有问题,但是用sh test.sh时 read -p就会报错,请问这个是什么原因?谢谢了~
试试sh -x test.sh