摘要:
练习一:求两个数的和 #/bin/bash a=0 b=0 read -p "Input the first number: " a read -p "Input the second number: " b sum=$[$a+$b] echo "The sum is $sum" exit 0 用到 阅读全文
摘要:
``` #!/bin/bash #当前时间 DATETIME=$(date +%Y-%m-%d_%H%M%S) echo $DATETIME #数据库所在的主机 HOST=localhost #数据库用户名 DB_USER=root #数据库密码 DB_PW=root123 #数据库名称 DB_NA 阅读全文
摘要:
echo $RANDOM [root@localhost shell]# echo $RANDOM 13603 [root@localhost shell]# echo $RANDOM 22698 [root@localhost shell]# echo $RANDOM 18368 [root@lo 阅读全文
摘要:
# SHELL学习 ## 一、什么是shell shell是一个程序,采用C语言编写。是用户和linux内核沟通的桥梁,是一种命令语言,也是一种解释性的编程语言。内核识别二进制语言。 ![](https://img2020.cnblogs.com/blog/2291742/202111/229174 阅读全文