Horje
bash wait for input to continue Code Example
bash wait for input to continue
read -t 1 -n 1
echo "Press any key to continue"
while [ true ] ; do
read -t 3 -n 1
if [ $? = 0 ] ; then
break ;
else
continue ;
fi
done




Shell

Related
ubuntu ram check ssh Code Example ubuntu ram check ssh Code Example
remove local commiits Code Example remove local commiits Code Example
git force sync with remote Code Example git force sync with remote Code Example
fix windows and linux time Code Example fix windows and linux time Code Example
how to kickstart ARD on mac using terminal Code Example how to kickstart ARD on mac using terminal Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
13