本文介绍了使用bash匹配文件夹名称的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有这段代码可以匹配文件夹名称:

I have this piece of code to match the folder name:

#!/bin/bash
for dir in teste/*
do
    if [ "$dir" = 1 ]; then
        echo "folder 1";
    fi
    if [ "$dir" = 2 ]; then
        echo "folder 2";
    fi
done

我有一个名为 teste/1/ teste/2/的目录运行上面的脚本后,我的输出什么都没有!没有错误...

And I have a directory called teste/1/ and teste/2/After running the script above, my output is nothing! There are no errors...

您知道如何解决吗?我不知道为什么会这样

Do you know how to solve it? I don't know why this happens

推荐答案

变量dir不包含12,但包含teste/1teste/2.

Variable dir does not contain 1 or 2 but teste/1 or teste/2.

使用,例如:

if [ "$dir" = "teste/1" ]; then

这篇关于使用bash匹配文件夹名称的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-24 03:24