云计算学习路线源码框架笔记:Shell版JumpServer开发

以下内容是关于云计算学习路线源码框架笔记内容,下面是关于Shell版JumpServer开发的内容:

首先要有思路, 完善不足的地方

#!/usr/bin/env bash

#

Author: bavdu

Email: [email protected]

Github: https://github.com/bavdu

Date: 2019//

while :

do

trap ':' INT EXIT TSTP TERM HUP

clear

cat <<-EOF

+-------------------------------------+

| JumpServer @Version1.0 |

+-------------------------------------+

| a. WebServer Apache. |

| b. MySQL Databases Server. |

| c. PHP Development Computer. |

| d. Quit |

+-------------------------------------+

EOF

read -p "Please input your jump to server's number: " computer

case $computer in

a)

ssh [email protected]

;;

b)

ssh [email protected]

;;

c)

ssh [email protected]

;;

d)

exit

;;

*)

printf "ERROR: Please redo your select!"

;;

esac

done

猜你喜欢

转载自blog.51cto.com/14489558/2454916