乐趣区

关于bash:shell-脚本常用命令

咱们要学会用工具解放双手,比方批量给文件夹下某些文件建设软链接,咱们能够写个脚本实现。上面记录这个工程中用到的一些命令。

变量

定义变量时,变量名不加美元符号

your_name="12"

应用变量

应用一个定义过的变量,只有在变量名后面加美元符号即可

your_name="qinjx"
echo $your_name
echo ${your_name}

变量名里面的花括号是可选的,加不加都行,加花括号是为了帮忙解释器辨认变量的边界

获取某目录下文件夹 / 文件的名称

  1. 如果是须要深度遍历,即输入文件夹曾经文件夹里的文件 / 文件夹,命令如下
#!/bin/bash
cd 目标目录
for file in $(ls *)
do
   echo $file
done
  1. 如果只想获取第一层的文件曾经文件夹,则如下
#!/bin/bash
cd 目标目录
for file in $(ls)
do
   echo $file
done

文件夹和文件的判断

首先判断的语法是
if [condition]
两个命令:

  1. -f “file”: 判断 file 是否是文件;
  2. -d “file”: 判断 file 是否是目录(文件夹)。

联合获取文件 / 夹的语法,比方判断是否为文件夹能够这么写

#!/bin/bash
cd 目标目录
for file in $(ls)
do
   if [-d "$file"]; then

     echo "$file is a directory"

   elif [-f "$file"]; then

     echo "$file is a file"  
   fi
done

数组是否蕴含某个值

咱们晓得 javascript 蕴含能够间接应用 [].includes('xxx')。用 shell 能够这么写:

if [["${array[@]}" =~ "${value}" ]]; then
  echo true
fi
if [[! "${array[@]}" =~ "${value}" ]]; then
  echo false
fi

流程管制

if 语句

if condition
then
    command1 
    command2
    ...
    commandN 
fi

if else

if condition 
then
    command1 
    command2
else 
    command
fi

if else-if else

if condition1
then
    command1
elif condition2 
then 
    command2
else
    commandN
fi

获取某个文件的绝对路径

  1. 获取文件的绝对路径能够应用
$(pwd)
  1. 如果想要获取一个绝对文件的绝对路径,能够这样写
$(cd ${basePath}; pwd)
退出移动版