用“touch”创建目录?

时间:2011-01-17 09:04:04

标签: linux bash

1)在“A”目录中:

find . -type f > a.txt

2)在“B”目录中:

cat a.txt | while read FILENAMES; do touch "$FILENAMES"; done

3)结果:2)“创建文件”[我的意思是只使用相同的文件名,但是0字节大小]确定。但是如果“A”目录中有子目录,则2)无法在subdir中创建文件,因为其中没有目录。

问题:有没有办法,touch可以创建目录?

2 个答案:

答案 0 :(得分:9)

由于find每行输出一个文件:

cat a.txt | while read file; do
    if [[ "$file" = */* ]]; then
        mkdir -p "${file%/*}";
    fi;

    touch "$file";
done

编辑:

如果在单独的步骤中创建目录,这会稍微有效:

cat a.txt | grep / | sed 's|/[^/]*$||' | sort -u | xargs -d $'\n' mkdir -p

cat a.txt | while read file; do
    touch "$file";
done

而且,不,touch无法自行创建目录。

答案 1 :(得分:0)

没有。为什么不使用mkdir而不是触摸目录?