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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T03:20:11+00:00 2026-05-24T03:20:11+00:00

Please tell me how to debug like the below statements in Unix. How to

  • 0

Please tell me how to debug like the below statements in Unix.
How to understand what the below code is doing, step by step.

if [ ! -f $R_C_S_L/j_r_d* ]
    then
echo 0>$R_C_S_L/j_r_d
fi
  • 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-24T03:20:12+00:00Added an answer on May 24, 2026 at 3:20 am

    Well you read it just from left to right:

     if [ ! -f $R_C_S_L/j_r_d* ]
    

    I guess if and [ is clear?

     man [
    

    brings man test up, and there we read:

    NAME
           test - check file types and compare values
    
    SYNOPSIS
           test EXPRESSION
           test
    
           [ EXPRESSION ]
           [ ]
           [ OPTION
    

    and further down:

       -f FILE
              FILE exists and is a regular file
    

    which file?

       $R_C_S_L/j_r_d*
    

    is parsed from left, where $ indicates, it is a variable. From writing variables myself, and glueing them together, I know, that it will include only the L, so $R_C_S_L is a variable, then / is the directory delimiter, and j_r_d* is part of a name, with a globbing pattern.

    So a directory, referenced by $R_C_S_L, with a file, matching j_r_d* is searched, that’s the test, and ! is the negation, so if the test fails, the inner part is done.

     echo 0 > $R_C_S_L/j_r_d
    

    writes a 0 to the shortest file, matching above pattern, if no such file exists.

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

Sidebar

Related Questions

please tell me where is leak in this code... //here I did video with
Please tell me why my window doesn't render. Below is the javascript that i
Can you please tell me how does this java code work? : public class
Can anyone please tell me what to do for the following error? 1>Linking... 1>.\Debug\CUDA1.cu.obj
Can someone please tell me where is the error in this code?, I use
Please tell me what is the Qt equivalent function for glutswapbuffers()..
Please tell me if it is possible to do the following: create an instance
Please tell me what will the call to given function return and how? The
Please tell me how to validate GUID in .net and it is unique for
please tell me how to get and bind data to UltraGrid dynamically on each

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.