当我在读文件时
示例脚本
while read file do temp = $(echo $file) read -p "Press Enter to continue" echo $temp done < test.txt
我想暂停脚本,直到我按ENTER键
示例脚本
while read file do temp = $(echo $file) read -p "Press Enter to continue" echo $temp done < test.txt
我想暂停脚本,直到我按ENTER键