linux-tutorial/codes/demos/bash/variable/variableDemo.sh
2018-02-02 09:11:02 +08:00

9 lines
217 B
Bash

#!/usr/bin/env bash
username="Zhang Peng" ### 声明变量
echo ${username} ### 输出变量的值
unset username ### 删除变量
echo ${username} ### 输出为空
export HELLO="Hello World" ### 输出环境变量