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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T05:08:49+00:00 2026-06-13T05:08:49+00:00

I need to unzip files matching a specific keyword in the name. A typical

  • 0

I need to unzip files matching a specific keyword in the name. A typical file will look like this:

JGS-Memphis~PSU~FVT~00000~JGM96911~1~P~1100~EPS10R0-15~CL10D1120A3271~0121017~141645.XML

When I do

unzip -o SOMEFILE.zip '*~PSU~*' -d psutmp/

It unzips the file above from SOMEFILE.zip without problem. But when I do

for i in `find . -name '*zip'`; do  unzip -o "$i" \'*PSU*\' -d psutmp/ ; done

It fails with a filename not matched: '*PSU*' error. I tried removing the tick marks around PSU. Same problem.

I also tried the -C option to match filenames case-insensitively

for i in `find . -name '*XML*zip'`; do  unzip -o "$i" -C *PSU* -d psutmp/ ; done

It fails with a

error:  cannot create psutmp/JGS-Memphis~PSU~FVT~00000~JGM96911~1~P~1100~EPS10R0-15~CL10D1120A3271~0121017~141645.XML

This is bunk. I am the root user of a development machine with 150GB of storage. Capacity is at 12%. What am I missing?

  • 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-13T05:08:50+00:00Added an answer on June 13, 2026 at 5:08 am

    Remove the backslashes in \'*P5U*\'. You don’t need to escape the single quotes.

    for i in `find . -name '*zip'`; do  unzip -o "$i" '*PSU*' -d psutmp/ ; done
    

    Using backticks in a for loop is somewhat of a code smell. I’d try one of these instead:

    # Unzip can interpret wildcards itself instead of the shell
    # if you put them in quotes.
    unzip -o '*.zip' '*PSU*' -d psutmp/
    
    # If all of the zip files are in one directory, no need for find.
    for i in *.zip; do unzip -o "$i" '*PSU*' -d psutmp/; done
    
    # "find -exec" is a nice alternative to "for i in `find`".
    find . -name '*.zip' -exec unzip -o {} '*PSU*' -d psutmp/ \;
    

    As far as the error goes, does psutmp/ exist? Are the permissions set so you can write to it?

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

Sidebar

Related Questions

Need to apply a filter to a file like this: TUPAC_0006:1:1:2554:2356#0/1 0 * 0
I need to write a batch file to unzip files to their current folder
I need to unzip a set of files that are a zip archive. This
Here is my requirement. I need to unzip a zip file and store it
I am writing an app that will need to unzip user uploaded archives. PHP
I'm uploading ZIP file to Amazon S3. Now I need to unzip that file
I need a zip library (or a function) that can zip\unzip a few files,
I need to unzip a compressed file on the fly in my program. It
What I need to do is unzip a file, (.gz or .z), read the
Im trying to make a file that will unzip a file and place the

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.