12 lines
183 B
Bash
Executable file
12 lines
183 B
Bash
Executable file
#!/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
|
|
|