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 8850151
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T12:50:01+00:00 2026-06-14T12:50:01+00:00

I am using rsync –list-only command with Django/Python: subprocess.Popen([‘rsync’, ‘–list-only’, source], stdout=subprocess.PIPE, env={‘RSYNC_PASSWORD’: password}).communicate()[0]

  • 0

I am using rsync –list-only command with Django/Python:

subprocess.Popen(['rsync', '--list-only', source],
                           stdout=subprocess.PIPE, 
                           env={'RSYNC_PASSWORD': password}).communicate()[0]

It returned result like this:

drwxrwxrwx 4096 2012/11/07 09:56:23 upload

I don’t want all the files information. I only want file name displayed like this:

upload

How can I do that? Thanks

  • 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-06-14T12:50:02+00:00Added an answer on June 14, 2026 at 12:50 pm

    rsync has no option to abbreviate the output, you need to use a regex (or split())

    import re
    retval = subprocess.Popen(['rsync', '--list-only', source],
                               stdout=subprocess.PIPE, 
                               env={'RSYNC_PASSWORD': password}).communicate()[0]
    retval = re.sub('^.+?\d+:\d+:\d+\s+(\S+.+)', '\g<1>', retval)
    

    Alternatively (as long as file names have no spaces)…

    retval = subprocess.Popen(['rsync', '--list-only', source],
                               stdout=subprocess.PIPE, 
                               env={'RSYNC_PASSWORD': password}).communicate()[0]
    retval = retval.split(' ')[-1]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here's an example of the command I'm using: rsync --list-only --include *2012*.xml -exclude *.xml
I'm creating a python script that runs rsync using subprocess and then gets the
I'm trying to launch an 'rsync' using subprocess module and Popen inside of a
I am rsyncing files from localhost to host1 using the following command. rsync -vq
I am using subprocess.check_call in combination with rsync. I need to use arguments for
currently I am maintaining a django web application and I am using rsync via
Using the following rsync command will let you copy numerous remote files to your
Im writing a bash-script to perform an offsite backup, using rsync over SSH. I'm
I have been using the --cvs-exclude option on my rsync scripts for a little
Using a populated Table Type as the source for a TSQL-Merge. I want to

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.