Sponsored Content
Top Forums Shell Programming and Scripting Sourcing Env file with eval works with ksh but not BASH Post 302953935 by waavman on Wednesday 2nd of September 2015 05:47:59 PM
Old 09-02-2015
Hi Don,

I am using perl script to read the envfile because eventually I would like this shell script to be used by other users who donot even have read access to /tmp/envfile.txt (using setuid bit that Perl supports)
For now however the userid that this is being run with does have read access to /tmp/envfile.txt. Or else it would not have worked even with KSH.

I tried using eval with cat instead of the perl script as you suggested.
But I notice the same behaviour as shown below.

Code:
#!/bin/bash
#eval `/tmp/filereader.pl /tmp/envfile.txt` 
eval $(cat /tmp/envfile.txt)
echo "TESTPATH=$TESTPATH"


And I get the following INCORRECT output where $BASEPATH is not substituted in the value of $TESTPATH
--------------------------------------------------------
TESTPATH=/subdir

But when I change shebang to #!/bin/ksh as below

Code:
#!/bin/ksh
#eval `/tmp/filereader.pl /tmp/envfile.txt` 
eval $(cat /tmp/envfile.txt)
echo "TESTPATH=$TESTPATH"


I get the correct output
---------------------------
TESTPATH=/masterdir/subdir

I tried adding TESTPATH=before before the eval `perlfile...` and also before eval $(cat...). It doesnot use that value of TESTPATH since it overwrites it with the value of TESTPATH from the /tmp/envfile.txt in both KSH and BASH.

As for my perl script /tmp/filereader.pl its a simple script that just reads form the input file argument and prints one line at a time

Code:
#!/usr/bin/suidperl
$envfilename=$ARGV[0];
open(FILEHANDLE,"<$envfilename") || die "Cannot Open file $envfilename";
while (<FILEHANDLE>)
{
        $lineread=$_;
        chop($lineread);
        printf("%s\n",$lineread);
}

However as you can see it does NOT seem to be an issue with the Perl script since the same variation of behaviour is exhibited between bash and ksh even when using eval $(cat /tmp/envfile.txt)


thanks
waavman
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

script sourcing problem (ksh)

I have a script "abc.sh" in /tmp which has exit 0 as its last line when I run this script from /tmp/xyz/def.sh script as . ../abc.sh then the script executes but the control doesn't return to def.sh script for subsequent commands in def.sh but if I invoke the abc.sh from inside the... (3 Replies)
Discussion started by: rakeshou
3 Replies

2. Shell Programming and Scripting

eval in bash

hi everyone i've been reading learning the bash and there is somrthing i don;t understand what does eval do i know that it run a command or script twice but i don;t see in what for cases i can use this could somebody explain this to me (3 Replies)
Discussion started by: jetfreggel
3 Replies

3. UNIX for Advanced & Expert Users

Ksh - Env. Variables ??

Hey all, I have been using Ksh and in that I am setting Environment variables. To set Env. Variables I have created my own file "BuildScript.sh" in which i have written : export CLASSPATH=/somedir/some other dir/file:. export PATH=/some dir/file:. But when i am calling this... (4 Replies)
Discussion started by: varungupta
4 Replies

4. Shell Programming and Scripting

KSH script eval(?) to set variable

first of all, thanks to all on this board, it has been a huge resource to answer most of my questions! I am stuck on something that should really be simple, and was looking for some help.. I am using KSH on solaris and working on a script to move containers from server to server. Where i am... (4 Replies)
Discussion started by: tksol
4 Replies

5. Shell Programming and Scripting

Eval Tricky Manipulation of Arry in KSH - Help

Hi, Could any one share the intelligence to track this problem. I have any array BT_META_36 and it prints properly with contents of array. # print "BT_META_36=${BT_META_36}" # BT_META_36=cab3,cab4:HDS:052,07A cab3,cab4:HDS:052,07A Now I have a BT_META_36 assigned to a variable.... (0 Replies)
Discussion started by: ajilesh
0 Replies

6. UNIX for Dummies Questions & Answers

[solved] Where & what bash env file, Mac OS?

Hi! I wanted to simplify my bash prompt, so I edited my etc/bashrc file. I thought this was the file that would override any other env files. When I opened it, I saw that the way it was setup was not what my prompt looked like, although I forget exactly what was there. But i edited it the way I... (1 Reply)
Discussion started by: sudon't
1 Replies

7. Shell Programming and Scripting

Setting up env variable in ksh

I am facing a very strange issue. I have script in ksh with #!/bin/ksh as shebang. This script has function which sets the env variable before running other functions of the script. by set_up_env() { CONFIG_FILE="/opt/app/tools/deepmarking/latestVersion/script/UploadEnv" if then ... (7 Replies)
Discussion started by: Tuxidow
7 Replies

8. Shell Programming and Scripting

Sourcing .cshrc (C shell) environment variables to bash

I have tried with the following: csh -c 'source ~/.cshrc; exec bash' # works perfectly (cat ~/.cshrc; echo exec bash) | csh # not working And, using sed, I successfully retrieved the environment variables from ~/.cshrc sed -rn 's/setenv\s+(\S+)\s+(.*)$/export \1=\2/p' ~/.cshrc but now... (6 Replies)
Discussion started by: royalibrahim
6 Replies

9. UNIX for Advanced & Expert Users

Dot sourcing differences in ksh, AIX vs Linux vs Solaris

Why does dot sourcing of ksh functions behave so differently between AIX, Solaris, and Linux? How can I make Linux behave the way I want in the test I show below? I have a library of interdependent functions I have developed and use in ksh in AIX. They also run in Solaris. Now I am migrating... (9 Replies)
Discussion started by: charles_n_may
9 Replies

10. UNIX for Beginners Questions & Answers

Sourcing file from parent directory bash

"Debian 9 64x - LXDE" I try to source a file from my parent directory: #!/bin/bash #source.bash . ../links.bash but i get "file not found". I tried . "../links.bash" and . '../links.bash'. I got on all methods the same result. If i use the absolute path it works, but i don't want to... (4 Replies)
Discussion started by: int3g3r
4 Replies
pam_env(8)						    BSD System Manager's Manual 						pam_env(8)

NAME
pam_env -- The Environment PAM module SYNOPSIS
[service-name] function-class control-flag pam_env [options] DESCRIPTION
The Environment PAM module supports the authentication and session management function classes. In terms of the function-class parameter, these are ``auth'' and ``session'' respectively. The Environment PAM module has identical support for both supported function classes. The Environment PAM module allows the setting and unsetting of environment variables. The use of previously set environment variables as well as PAM_ITEMs such as PAM_RHOST is supported. This module can also parse a file with simple KEY=VAL pairs on separate lines (/etc/environment by default). You can change the default file to parse, with the envfile flag and turn it on or off by setting the readenv flag to 1 or 0 respectively. The following options may be passed to this module: conffile=/path/to/pam_env.conf Indicate an alternative pam_env.conf style configuration file to override the default. This can be useful when different services need different environments. debug A lot of debug information will be printed to the system log. envfile=/path/to/environment Indicate an alternative environment file to override the default. This can be useful when different services need different envi- ronments. readenv=0|1 Turns on or off the reading of the file specified by envfile (0 is off, 1 is on). By default this option is on. FILES
/etc/security/pam_env.conf The default configuration file. /etc/environment The default environment file. SEE ALSO
environ(7), pam.conf(5), pam(8) AUTHORS
The pam_env module was written by Dave Kinchlea <kinch@kinch.ark.com>. BSD
February 7, 2009 BSD
All times are GMT -4. The time now is 08:29 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy