shell 脚本初体验

警告
本文最后更新于 2023-07-07,文中内容可能已过时。

今天上机学了几个小命令

  • read
  • echo
  • if

然后自己写了一个小脚本觉得还挺有趣的

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/bin/bash
#liruihao
#menu.sh
#sudo apt curl install nyancat sl figlet toilet cowsay
echo "-------------菜-单--------------"
echo "------------1-打印二维码--------"
echo "------------2-彩虹猫------------"
echo "------------3-小火切------------"
echo "------------4-打字机------------"
echo "------------5-小许牛------------"
echo "----------Ctrl+c 暂停程序--------"
echo ""
echo "请输入序号!"
read i
if test $i -eq 1
then
	echo "请输入网址!"
	read s1
       	echo $s1 |curl -F-=\<- qrenco.de
fi
if test $i -eq 2
then
	nyancat
fi
if test $i -eq 3
then
	sl
fi
if test $i -eq 4
then
	echo "请输入字符串!"
	read s2
	echo "选择样式:"
	echo "------样式 1-----"
	echo "------样式 2-----"
	read j
	if test $j -eq 1
	then
		figlet $s2
	else
		toilet -f mono12 -F gay $s2
	fi
fi
if test $i -eq 5
then
	echo "请输入字符串!"
	read s3
	cowsay $s3
fi
echo "任意建继续!"
read x
clear
./menu.sh

Buy me a coffee~
支付宝
微信
0%