특정디렉터리 하위에 .svn 폴더를 제외한 파일리스트를 뽑을려면 어떻게해야하나요 ?

xoduddk123의 이미지

안녕하세요

svn을 통해서 파일관리를 하고있습니다.

그런데 svn을 통해서 파일을 관리하면 여러가지 불편한점이 있는데 그 중 하나가 svn으로 업데이트를 받으면 각가의 폴더마다 .svn폴더가 생긴다는건데요.

이때문에 원본파일이랑 비교를 할때 불편항 사항이있습니다.

뭐.. 하위디렉토리에 .svn폴더를 전체를 삭제를 하려면

find ./ -name . svn -print0 | xargs -0 rm -rf

를 해서 지우면 되나 저는 A라는 디렉터리안에 있는 파일리스트들을 뽑아서 문서로 정리를 하려고합니다.

이때 .svn이 파일리스트에 포함안되었으면 하는데... 방법이 있을까요???

shint의 이미지

find와 grep 으로 구글과 네이버에서 찾아보는것이 좋습니다.

.svn 과 . svn에 사이가 떨어졌습니다.
".svn" 문장 사이는 큰 따옴표로 묶는 방법이 있습니다.

find에서는 -not 을 사용하나 봅니다.
http://www.ling.ohio-state.edu/~kyoon/tts/unix-help/unix-find-command-examples.htm

grep에는 포함 문자에 대한 옵션이 있습니다.
http://ra2kstar.tistory.com/100

man find
man grep 등으로 설명이 나옵니다.

tree 트리사용하기
cat 파일 내용보기
| 파이프로 같이 사용하기
>> text.txt 로 파일 저장
!나 <>가 될지는 모르겠습니다.

----------------------------------------------------------------------------
젊음'은 모든것을 가능하게 만든다.

매일 1억명이 사용하는 프로그램을 함께 만들어보고 싶습니다.
정규 근로 시간을 지키는. 야근 없는 회사와 거래합니다.

각 분야별. 좋은 책'이나 사이트' 블로그' 링크 소개 받습니다. shintx@naver.com

익명 사용자의 이미지

1. .svn을 지우는 것은 더이상 svn으로 관리하지 않겠다는 뜻이네요.
그래도 상관없다면 애초에 내려받을때 checkout대신 export로 받으면 됩니다.
또는 현재 작업 디렉토리를 다른 디렉토리로 export 할 수도 있습니다.

2. svn 1.7이상부터는 최상위 디렉토리에만 하나의 .svn을 만듭니다.
클라이언트만 업그레이드해도 됩니다.

3. 비교를 할때 .svn 디렉토리를 무시하게 할 수 있습니다.

4. 파일리스트를 만들때 .svn 디렉토리를 무시하게 만들 수도 있습니다.

3,4번은 현재 어떻게 하고 있는지를 알려주시면,
어떻게 무시하게 하는지에 대한 답변이 가능하겠네요.

Sdsf3qUr의 이미지

1번의 방법이 가능하다면 저도 마찬가지로 그 방법을 추천 합니다.

4번의 방법은 find의 prune 액션을 사용하면 가능 합니다.

$ pwd
/tmp/tmp.Xy6cWZSJNf
$ tree -a
.
├── .svn
│   └── svn.txt
├── svn
│   └── svn.txt
└── svn.txt
 
2 directories, 3 files
$ find
.
./svn.txt
./svn
./svn/svn.txt
./.svn
./.svn/svn.txt
$ find -type d -name '.svn' -prune \
  -or \
  -print
.
./svn.txt
./svn
./svn/svn.txt
$ 

prune 액션에 대해서 설명했던 글이 있습니다.

https://kldp.org/node/141739#comment-602207

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.