美文网首页
Bash if 语句相关

Bash if 语句相关

作者: lucientlau | 来源:发表于2018-04-02 21:01 被阅读0次
for filename in `ls $foldpath`
do
  if [[  $filename =~ .*_raw_.*\.csv  ]] # find the file with name like 'sss_raw_df.csv'
  then 
    #do process
  fi
done

if [ -d $filepath ] #check if the filepath is a fold
if [ -f $filepath ] # check if the filepath is a file
if [ -e $filepath ] # check if the path is exist

相关文章

  • Bash if 语句相关

  • bash的三元操作符

    类似其他高级语言的(?:)操作符: 如果用标准的bash语句来实现就是:用if语句: 用case语句: 在bash...

  • 理解 Bash 的 if 语句

    理解 Bash 的 if 语句 (转) 写 bash 脚本的日子也不短了,但是每次用到 if 语句时大脑还是会卡壳...

  • bash 相关

    修改 bash 的提示符 askubuntu.com原文Currently it is:michael@Castl...

  • Shell 循环语句(四) select

    Bash 还提供了 select 循环。其语法如下所示: select 循环语句有如下特点: select 语句使...

  • Shell Bash相关

    排序功能 进行排序 获取内存前10名 网络收发情况 获取实时流量

  • Bash编程004——条件语句2

    Bash编程004——条件语句2 [[ ]]的使用 [[ ]]是bash中的关键字,相当于new test,也是用...

  • bash的if语句用法

    从一个问题引发 最近我们项目碰到一个regression bug究其原因是因为对bash语言语句的理解不深刻。我们...

  • 读书笔记-认识Bash

    推荐【Docker基础与实战】 Bash当中命令的总结 Bash的基本语法 if语句-eq 等于-ne 不等于-l...

  • CPP:编译器及Boost库安装

    C++相关库安装 GCC安装 vim ~/.bash_profile: source ~/.bash_profil...

网友评论

      本文标题:Bash if 语句相关

      本文链接:https://www.haomeiwen.com/subject/idxfhftx.html