Shell scripts in Linux delete. SVN folder

Source: Internet
Author: User
Tags svn

When you download the SVN code on a Linux server and sync it to a web directory, you'll need to clean up the folder and add a little security to your safety.
Script content:
del_svn.sh

The code is as follows Copy Code

#!/bin/bash
cd/home/trunk/
Find./-name ". SVN" |xargs-n1 echo >/dev/null 2>&1
Find./-name ". SVN"-print0 | xargs-0 RM-FR
If [$?-ne 0]; Then
echo "Remove. SVN dirs failed!"
Fi


Of course, you can also use the following 3 commands directly:

The code is as follows Copy Code

Rm-rf ' Find. -type d-name. SVN '


Find. -name ". SVN"-type D | Xargs RM-FR

Find. -name ". SVN"-type D | Xargs-n1 Rm-r


Most of the Internet circulated:
Find. -type d-name ". SVN" | Xargs RM-FR
After my verification, can not delete. SVN directory. I also hope that everyone will go to verify the next turn out.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.