markdown bash基本脚本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown bash基本脚本相关的知识,希望对你有一定的参考价值。

#!/bin/bash

echo "Going to blabla"
# Arg from cmd
echo Variable one $1

# -z check if $1 exist
if [ -z $1 ]
then
  echo Do zzz
else
  read something
  echo Do $something
fi

# Compare strings
str1="Hello Bash"
str2="Hello Bash"
 
if [ "$str1" == "$str2" ]; then
    echo "Strings are equal"
else
    echo "Strings are not equal"
fi

```sh
# Test file exist (use -d to test directory)
if [ ! -f /tmp/foo.txt ]; then
    echo "File not found!"
fi

# God damn one liner
if [ -f foo.txt ]; then echo hello; fi
```

以上是关于markdown bash基本脚本的主要内容,如果未能解决你的问题,请参考以下文章

markdown 使用npm运行bash脚本

markdown 在Bash中获取脚本和当前路径

构建基本 bash 脚本

Lubuntu中的基本菜单BASH脚本

linux命令练习:基本bash脚本练习 取三个数最大值及最小值

脚本编程基本功