Nushell

是文件,如果目錄在 nushell 中檢查

  • August 23, 2022

什麼nushell相當於跟隨 bash。

if [[ -d $LOCATION ]]; then

elif [[ -f $LOCATION ]]; then

fi

我覺得我錯過了一種更實用的方法,但是:

if ($LOCATION | path type) == "file" {
   echo "It's a file." 
} else if ($LOCATION | path type) == "dir" {
   echo "It's a directory"
}

引用自:https://unix.stackexchange.com/questions/714543