Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6713999
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T08:26:42+00:00 2026-05-26T08:26:42+00:00

I have an SVN repository. I have a shell/bash script that’s designed to automatically

  • 0

I have an SVN repository. I have a shell/bash script that’s designed to automatically add all unversioned files to the repository. It looks like this:

 svn status | grep '^?' | sed 's/^.* /svn add /' | bash;

Which works perfectly, except for when one of my new files has whitespace in the filename. How can I modify this command to deal with that?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T08:26:43+00:00Added an answer on May 26, 2026 at 8:26 am

    To avoid quoting issues here, you should avoid the shell call altogether and use xargs instead, which will also speed up the process:

    svn status | grep '^?' | sed -e 's/^? *//' | xargs --no-run-if-empty -d '\n' svn add
    

    This will handle most special characters, but not work to escape newlines, but since these are the record separator for svn status and grep, you won’t get much better than that anyway.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have svn repository where I have scheduled some files and folders to be
I have an SVN repository with uncommitted changes to files. There is also a
I have a svn repository that I migrated to git using the tool svn2git.
I have a SVN repository server that runs under the repository user. I want
I have a SVN repository that has stuff from Bin directory ( .exe ,
I currently have an SVN repository that is based on the DEPLOYED location of:
I have an SVN repository that I have updated my local code from, and
We have an SVN repository which is stored online with all our tickets, wikis,
I have a production SVN repository that i want to clone with git. when
With git-svn If I have cloned svn repository with all trunk, branches and tags,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.