Forgetful Alann

In youth we learn, in age we understand.

0%


Bash 脚本中可以将需要复用的代码定义成函数,方便脚本内重复调用。

Read more »


Bash 中有三种循环 while、 until、 for。

Read more »


Bash 脚本中可以使用 if - else,case 语句 来进行条件判断,对于字符串还支持正则。

Read more »

可以使用 read 命令来读取用户输入的内容、密码以及文件内容,并存入变量以备使用。

Read more »


Bash 脚本是多个 Bash 命令的集合,使用脚本的好处是可以方便处理复杂任务并且复用。

Read more »


Bash 中提供了操作目录堆栈的命令。

cd -


cd - 可以返回用户上次所在的目录。

Read more »

算术表达式


算术表达式语法:((...)),在 Bash 中,该表达式只能进行整数运算,返回的结果也是整数

Read more »

简介


Bash 中有两类变量:

  • 环境变量
  • 自定义变量
Read more »