본질적으로 이 명령을 실행하고 싶습니다 ...
ln -s /opt/gitlab/embedded/service/gitlab-shell/hooks/ /var/opt/gitlab/git-data/repositories/web/*/hooks
이렇게 하면 웹 폴더 아래의 모든 폴더에 Hooks라는 심볼릭 링크가 생성되지만 오류가 반환되지는 않지만 실제로 심볼릭 링크가 추가되지는 않습니다.
답변1
find
이 옵션과 함께 maxdepth
이 명령을 사용할 수 있습니다 . 다음과 같은 예제 디렉터리 구조를 만들었습니다.
/tmp/parent
/tmp/parent/subdir2
/tmp/parent/subdir1
/tmp/parent/subdir4
/tmp/parent/subdir4/notme
/tmp/parent/subdir3
하위 디렉터리 /tmp/hooks
가 아닌 모든 하위 디렉터리에 심볼릭 링크를 만들고 싶다고 가정해 보겠습니다 .notme
root@xxxxxxvlp12 ~ $ find /tmp/parent -type d -maxdepth 1 -exec ln -s /tmp/hooks {} \;
root@xxxxxxvlp12 ~ $ find /tmp/parent -ls
2490378 4 drwxr-xr-x 6 root root 4096 Oct 7 12:39 /tmp/parent
2490382 4 drwxr-xr-x 2 root root 4096 Oct 7 12:39 /tmp/parent/subdir2
2490394 0 lrwxrwxrwx 1 root root 10 Oct 7 12:39 /tmp/parent/subdir2/hooks -> /tmp/hooks
2490379 4 drwxr-xr-x 2 root root 4096 Oct 7 12:39 /tmp/parent/subdir1
2490395 0 lrwxrwxrwx 1 root root 10 Oct 7 12:39 /tmp/parent/subdir1/hooks -> /tmp/hooks
2490389 4 drwxr-xr-x 3 root root 4096 Oct 7 12:39 /tmp/parent/subdir4
2490390 4 drwxr-xr-x 2 root root 4096 Oct 7 12:38 /tmp/parent/subdir4/notme
2490396 0 lrwxrwxrwx 1 root root 10 Oct 7 12:39 /tmp/parent/subdir4/hooks -> /tmp/hooks
2490387 4 drwxr-xr-x 2 root root 4096 Oct 7 12:39 /tmp/parent/subdir3
2490397 0 lrwxrwxrwx 1 root root 10 Oct 7 12:39 /tmp/parent/subdir3/hooks -> /tmp/hooks
2490391 0 lrwxrwxrwx 1 root root 10 Oct 7 12:39 /tmp/parent/hooks -> /tmp/hooks
답변2
find
특정 경로 아래 각 디렉터리의 컨텍스트에서 명령을 실행하는 데 사용할 수 있습니다.
다음 명령은 /var/opt/gitlab/git-data/repositories/web/
디렉터리( -type d
) 아래의 모든 파일을 찾고 검사 중인 현재 디렉터리( {}
in 으로 표시됨 -exec
) 에 상대적인 심볼릭 링크를 만듭니다.
따라서 다음 find
명령은 요구 사항을 충족합니다.
find /var/opt/gitlab/git-data/repositories/web/ -type d -exec ln /opt/gitlab/embedded/service/gitlab-shell/hooks/ {}/hooks \;
답변3
ln
다음과 같이 작동합니다 cp
. 인수가 2개 이상인 경우 마지막 인수가 디렉터리로 간주됩니다.
~에서만린:
ln [option]... target... directory
for 루프를 사용해야 합니다.
답변4
주위를 둘러보고 find 명령을 사용한 후, 항목을 반복하는 것이 더 쉽다는 것을 알았습니다 ./*/
. 도움을 주셔서 감사합니다! 내 github 계정에 좀 더 정교한 스크립트를 만들었습니다. gitlab에만 해당되지만 필요에 맞게 수정하는 데 몇 분 밖에 걸리지 않습니다.https://github.com/michaeljs1990/bash-scripts/blob/master/gitlab-hooks-migration.sh.
#!/bin/bash
find . -name "hooks" -type l -delete
hooks="hooks"
for i in ./*/; do
ln -s /opt/gitlab/embedded/service/gitlab-shell/hooks/ $i$hooks
done