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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T20:56:59+00:00 2026-05-22T20:56:59+00:00

Say I have a file (php as it happens), with a number of variable

  • 0

Say I have a file (php as it happens), with a number of variable declarations:

$dbuser = 'fred';
$dppass = 'abc123';
$dhhost = '127.0.0.1';

What I want to do from a BASH script, is parse this file, identify the variables I need, and read their values into variables I can access from my BASH script.

Obviously, the above file being PHP, has other lines that I’m not interested in.

I can extract the info I need from the bash shell using the following command:

grep \$dbuser config.php.inc | grep -Po "\'.*\'" | cut -d \' -f 2

which neatly returns

fred

But when I try to add this to a bash script to put the output into a variable using backticks, as follows:

dbuser=`grep \$dbuser config.php.inc | grep -Po "\'.*\'" | cut -d \' -f 2`

my BASH script hangs at this point.

Why is this hanging, or, is there a better way of doing what I’m trying to achieve?

  • 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-22T20:57:00+00:00Added an answer on May 22, 2026 at 8:57 pm

    This will return text like var='value';

    awk '
        match($1, /^\$([[:alnum:]_]+)=?/, m){
            gsub(/^[^=]+=[[:space:]]*/, "")
            print m[1] "=" $0
        }
    ' < file.php
    

    You can eval the output.

    update

    This is a lot simpler than the above. I realized all you need to do is delete the first $ and remove the spaces around the =:

    sed -e 's/\$//' -e 's/ *= */=/' file.php
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Say I have a file with any number of lines, say, 125. I want
Let's say I have a PHP file disguised as an image. Anyways, I want
I have a problem with my path. Say I have a PHP file in
Say I have a binary file of 12GB and I want to slice 8GB
Let's say I have a php file, test.php with 2 functions: test1() and test2().
Say I have a file Foo.php: <?php interface ICommand { function doSomething(); } class
Say I have file.php with three functions and an echo statement: function one() {
Here is my problem. I have one file (say, func.inc.php) with autoloader function, registered
say i have a file /var/www/foo/test.php how do i find out it's path from
Say I have a variable containing PHP code, can I include its content as

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.