Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

228
Views
Using pipe in if statement is not working

I'm new to shell scripting and stuck with this - I tried this if clause:

if [ unrar l "$filename" | grep -P "\.(?:r\d\d|r\d\d\d|.rar)$ ];
then...

It's not working, so tried this debug output - I get no output to $grep_output:

$grep_output = unrar l "$filename" | grep -P "\.(?:r\d\d|r\d\d\d|.rar)$"

If I execute this directly on the shell it's working without any problems:

unrar l "$filename" | grep -P "\.(?:r\d\d|r\d\d\d|.rar)$

Where is my mistake? Thanks in Advance!

over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

Remove the square brackets; these are not part of the syntax of the if statement, but an alternative way of invoking the test command, usually in order to use a binary operator:

if unrar l "$filename" | grep -P "\.(?:r\d\d|r\d\d\d|.rar)$";
  then...
fi
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!