My problem is with the $PWD, yes, that's the only causing problems so i have exported the PATH, I've checked it's exported, everything else runs but $PWD returns a null value so that part of the script can't run!
This is all the scrip does (it's a test from a much larger code that's failing in the PWD).
When I run on command runs fine, using cron it just prints "My path: lalalala"
I added: ". $HOME/local.profile" (without quotes) to the scrip that call this, and I print the env to make sure the PATH for my environment is the same as that of cron, and it is:
PATH=/usr/bin:/usr/ucb:/etc:.
I even changed the SHELL to bash in case it made any difference, it didnt.
Please someone give me more ideas why $PWD is not recognize in the script through cron!
Maybe it has to do with env printing a value for PWD and OLDPWD but cron's doesn't? How would I set PWD in cron's environment? I tried this in my profile:
PWD=$PWD
export PWD
when environment ran it gave a null PWD, same as in the scripts so.... this didn't work. =(
Please state what Operating System and version you are using and whether this is a root cron or a user cron. It would also help to know if "/bin/sh" is a POSIX shell or something else like a Berkeley Shell.
How do I find out if it's a root or user cron? I cannot change it's cron.deny file or look at the logs without -su but i can definitelly add scripts as a user.
Quote:
if "/bin/sh" is a POSIX shell or something else like a Berkeley Shell.
How do I find that out?
Thanks all for your help, im really struggling with this.
---------- Post updated at 11:10 AM ---------- Previous update was at 11:03 AM ----------
Quote:
Originally Posted by vgersh99
worked on crontab! but then it doesn't work when i use it in my script and i called the script using cron
Please help me on below..
https://www.unix.com/shell-programming-scripting/141533-retrieve-value-environment-variable-shell-script-called-crontab.html#post302442024
I'm still here. I can still see you! (0 Replies)
There are two files one is shell script (sample.sh) and another is configuration file (sampl_conf.cfg)
configuration file contains one variable $FTP_HOME. the value of this variable vaires for user to user. If user is say jadoo then value is /home/jadoo/ftp/, for user1 - /home/user1/ftp. The... (0 Replies)
Suppose that I have an environment variable (call it "EVAR") that I set before running a process (call it "myproc"). "myproc" is run multiple times by multiple users and each may set "EVAR" differently. I.E.:
UserA:
export EVAR=v1
myproc
UserB:
export EVAR=v2
myproc
Now "myproc" is... (3 Replies)
Hello,
For the moment, my LC_ALL variable is set as "" by default. If I want to change this value, I do : export LC_ALL="en_fr" for example.
That I want to know it's : how can I set by default this value ? I want to save it on my profile in order to get it when I open my session... :confused:... (2 Replies)
Hi,
I have to set bunch of variables and all other programs like make,
perl will use them ..
Here are my constraints and requirements ...
The variables have to be set by executing a script that runs
in c shell. I cannot source the script since people who use this
script might be on... (8 Replies)
Hello all,
I am a bit confused not only because I am new to Solaris but because when I run "env" I get a list of variables that are not in the user .profile. Where else can the account be getting environment variables from?
Is there a .profile that applies to all accounts?
Thank you in... (4 Replies)
I have been resently working on some ksh script. One of the line in the file writes:
.. /etc/.environment dev_env
I can not understand what this mean, all I know is .environment is unix system environment file. Is ".." a command? If some one can give me some clue where can I find information... (7 Replies)
hi,
I want to create a new EV(Environment Variable) through a c program and I done this thing through setenv() method. But the newly created EV is not permanent, i.e. when I exit from the program the EV also no longer lives. But I want to make it a permanent EV for the current user. Actually I... (6 Replies)
what is the environment variable used for getting the <machine name> .
hello $LOGNAME,welcome to <??>
I want to print the machine name in the place of <??>
Please help. (6 Replies)
Hi!
How-to get the environment variables in GNU.
getenv() only fetches the ones that you can find under export (not the ones under declare)...
best regars .David (2 Replies)