|
|
|
|
||||||
| comp.unix.shell Using and programming the Unix shell. |
![]() |
|
|
LinkBack | Outils de la discussion |
|
|
#1 |
|
Messages: n/a
Hébergeur: |
I want to remove .svn directories, and I found the solution below on the
internet: find . -name .svn -exec rm -vrf {} \; Can anyone explain to me what exactly does it mean? Thank you! |
|
|
|
#2 |
|
Messages: n/a
Hébergeur: |
On 1/4/2008 8:05 AM, Tony Winslow wrote: > I want to remove .svn directories, and I found the solution below on the > internet: > find . -name .svn -exec rm -vrf {} \; > Can anyone explain to me what exactly does it mean? Thank you! find . = find from the current directory (.) down -name .svn = all files and directories named ".svn" -exec = and execute the following command: rm -vrf = which is the "rm" command using arguments "-vrf" (man rm) {} \; = giving that command each file/dir name as it's found. Ed. |
|
|
|
#3 |
|
Messages: n/a
Hébergeur: |
Tony Winslow wrote:
> I want to remove .svn directories, and I found the solution below on the > internet: > find . -name .svn -exec rm -vrf {} \; > Can anyone explain to me what exactly does it mean? Thank you! Or checkout your dirs and files without creating .svn dirs: svn export URL -- Best regards | Be nice to America or they'll bring democracy to Cyrus | your country. |
|
![]() |
| Outils de la discussion | |
|
|