디렉터리 구조를 복사하고 대상의 하위 디렉터리 이름을 바꾸는 방법

디렉터리 구조를 복사하고 대상의 하위 디렉터리 이름을 바꾸는 방법

이 디렉토리 구조를 고려하면

$ lsd --tree                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
.
└── / defs
    ├── / bar
    │   └── / v1
    │       └── bar.txt
    └── / foo
        └── / v1
            └── foo.txt

이 구조를 생성하려면 간단한 명령/스크립트가 필요합니다. 실제 구조에는 더 많은 디렉터리가 있습니다.

$ lsd --tree                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
.
└── / defs
    ├── / bar
    │   ├── / v1
    │   │   └── bar.txt
    │   └── / v2
    │       └── bar.txt
    └── / foo
        ├── / v1
        │   └── foo.txt
        └── / v2
            └── foo.txt

대상을 복사하고 이름을 바꾸십시오.

답변1

이것이 해결책이 될 수 있습니다.

#!/bin/bash
# This is file 'script'.

set -e   # (optional)
         #  immediately exit on some errors, like
         #  mkdir <existing directory>  

ROOT=.  # or some other directory

 # find <directories where to start>  <predicates>
 #    -type d   ... directories
 #    -name 'v1' .... exactly matching v1 
 #    -name '*v1' .... end with v1 
find "$ROOT" -type d -name 'v1'  | while read x;
     do 
       b="${x%v1}"    # remove v1 at the and
       y="${b}v2"     # add v2
       mkdir "$y"
       cp -vr "$x"/. "$y"/
     done

스크립트를 테스트하기 위해 몇 가지 파일과 디렉터리를 만들어 보겠습니다. (먼저 완전히 제거하세요 x.)

$ rm -fr x; \
 mkdir x x/a x/a/v1 x/a/v1/d x/b x/b/v1; touch x/notcopied x/a/notcopied x/a/v1/f1 x/b/v1/f2 x/a/v1/d/f3; find x; echo -------------;\
 (cd x; bash  ../script);\
 find x;
x
x/a
x/a/notcopied
x/a/v1
x/a/v1/d
x/a/v1/d/f3
x/a/v1/f1
x/notcopied
x/b
x/b/v1
x/b/v1/f2
-------------
'./a/v1/./d' -> './a/v2/./d'
'./a/v1/./d/f3' -> './a/v2/./d/f3'
'./a/v1/./f1' -> './a/v2/./f1'
'./b/v1/./f2' -> './b/v2/./f2'
x
x/a
x/a/v2
x/a/v2/d
x/a/v2/d/f3
x/a/v2/f1
x/a/notcopied
x/a/v1
x/a/v1/d
x/a/v1/d/f3
x/a/v1/f1
x/notcopied
x/b
x/b/v2
x/b/v2/f2
x/b/v1
x/b/v1/f2

/.온라인에 접속하는 것은 cp매우 중요합니다. 그것이 없으면 v2/v1내부에 파일이 있을 것입니다.

관련 정보