博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Shell 中的空值(null value)和不存在是不一样的。
阅读量:6512 次
发布时间:2019-06-24

本文共 359 字,大约阅读时间需要 1 分钟。

hot3.png

$ str=  null value 

$ unset str   不存在

$ str= # 设为 null

$ unset str # 取消

#!/bin/bash

A=B

echo "PID for 1.sh before exec/source/fork:$$"

export A

echo "1.sh: \$A is $A"

case $1 in

exec)

echo "using exec..."

exec ./2.sh ;;

source)

echo "using source..."

. ./2.sh ;;

*)

echo "using fork by default..."

./2.sh ;;

esac

转载于:https://my.oschina.net/wangzongtao/blog/631802

你可能感兴趣的文章