13 lines
183 B
Text
13 lines
183 B
Text
|
#!/bin/bash
|
||
|
# init
|
||
|
function pause(){
|
||
|
read -p -
|
||
|
}
|
||
|
clear
|
||
|
echo Running Yum ....
|
||
|
|
||
|
beesu yum update
|
||
|
echo -e '\E[5;32;47m'" Press any key to close window and return to program. "
|
||
|
pause
|
||
|
|