《问》HowTo: Add Pause Prompt In a Shell Script ( bash pause command )
《问》
HowTo: Add Pause Prompt In a Shell Script ( bash pause command )Code
#!/bin/bash
echo "start read"
read -p "Press [Enter] key to start build..."
echo "end read"
References
#!/bin/bash
echo "start read"
read -p "Press [Enter] key to start build..."
echo "end read"
Comments