shell 常用知识汇总

2019-11-20  本文已影响0人  Megatron7

这里整理了一份shell常用语法,方便复习。

1.输入输出重定向

2.常用的转移字符

3.流程控制语句[if,else, for, while, case]:

# if/else: 
    if [[ condition ]]; then
        do some thing;
    elif [[ condition ]]; then
        do some thing;
    else
        do some thing;
    fi;
# for:
    for i in $(seq 10); do
        do some thing;
    done;   
# while:
    i=10;
    while [[ $i -gt 5 ]];do
        echo $i;
        ((i--));
    done;
# case:
    case $1 in
    start | begin)
        echo "start something"  
        ;;
    stop | end)
        echo "stop something"  
        ;;
    *)
        echo "Ignorant"  
        ;;
    esac

前台、后台任务:

经验之谈:

单元测试:

func_check_file:
-x 是否存在且可执行
-d 路径是否存在
-f 文件是否存在

参考网文:

"添加小柒老师,进群共同学习技术"

扫描上方二维码
上一篇 下一篇

猜你喜欢

热点阅读