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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T11:30:15+00:00 2026-06-14T11:30:15+00:00

I have a perl script (abc.pl) and 2 config files (one var.pl and one

  • 0

I have a perl script (abc.pl) and 2 config files (one var.pl and one config.txt)

Now

in var.pl

$admin_userid = "admin";
$guest_userid = "guest";

in config.txt – this has the value of user – can be either admin or guest

user=admin/guest

in abc.pl

require var.pl

$get_user = admin or guest (get this value from config.txt)
**$myfinal_userid = ??**

I want the value of myfinal_user_id as admin if user in config.txt is admin and guest if it is guest.

i.e. based on $get_user’s value I want the value of userid – ${$get_user}.”_userid”
eg: if config.txt has user=admin, the $get_user = admin and I want $myfinal_userid = $admin_userid. similarly for guest. This has to be dynamic.

Finally what I want is, know the user from config.txt and based on it, get the userid from var.pl and store that in myfinal_userid.

Let me know how can I achieve this in perl?

  • 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-14T11:30:17+00:00Added an answer on June 14, 2026 at 11:30 am

    Use a hash to store the id’s:

    my %id = ( admin => 'admin',
               guest => 'guest',
             );
    
    my $get_user = 'admin';  # Read this from the config.
    my $final_id = $id{$get_user};
    
    my $other_user = 'guest';
    my $another_final_id = $id{$other_user};
    
    print $final_id, "\n", $another_final_id, "\n";
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Perl script to copy some config files from remote servers to
I have a Perl script, that's supposed to match this string: Sometimes, he says
I have this Perl script sitting in the cgi-bin folder of my Apache server:
Have a perl script that needs to process all files of a certain type
I have this perl script that I need to distribute to my coworkers who
I have a Perl script which retrieves data from MySQL Database. this is the
I have this perl script and it takes in arguments using the getoption package.
I have a perl script which is used to process some data files from
I have a perl script which, when destilled a bit, looks like this: my
I have a perl script that grabs some files from a remote server and

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.