从Bash函数返回一个布尔值

前端之家收集整理的这篇文章主要介绍了从Bash函数返回一个布尔值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想编写一个bash函数来检查文件是否具有某些属性并返回true或false。然后我可以在“if”的脚本中使用它。但是我该怎么回事呢?
function myfun(){ ... return 0; else return 1; fi;}

然后我像这样使用它:

if myfun filename.txt; then ...

当然这不起作用。如何实现这一目标?

使用0表示true,使用1表示false。

样品:

#!/bin/bash

isdirectory() {
  if [ -d "$1" ]
  then
    # 0 = true
    return 0 
  else
    # 1 = false
    return 1
  fi
}


if isdirectory $1; then echo "is directory"; else echo "nopes"; fi

编辑

从@ amichair的评论来看,这些也是可能的

isdirectory() {
  if [ -d "$1" ]
  then
    true
  else
    false
  fi
}


isdirectory() {
  [ -d "$1" ]
}
原文链接:https://www.f2er.com/bash/387309.html

猜你在找的Bash相关文章