Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re^2: chdir: failure

by Rabbi Bob (Scribe)
on Jul 17, 2007 at 11:13 UTC ( [id://626997]=note: print w/replies, xml ) Need Help??


in reply to Re: chdir: failure
in thread chdir: failure

Building on the above suggestions:
$DATE = `date +%Y-%m-%d`; chomp $DATE; $CURRDIR = '/home/'.$USER.'/'.$DATE; chdir ($CURRDIR) || die "Couldn't change to $CURRDIR Reason: $!";
You most likely will find that you are not pulling $USER into the directory line.
-sh-3.1$ perl chdirtest.pl Couldn't change to /home//2007-07-17 Reason: No such file or directory + at chdirtest.pl line 4.
Try assigning $USER, perhaps using get_login();
$DATE = `date +%Y-%m-%d`; chomp $DATE; my $USER=getlogin(); $CURRDIR = '/home/'.$USER.'/'.$DATE; chdir ($CURRDIR) || die "Couldn't change to $CURRDIR Reason: $!";
"The trouble with having an open mind, of course, is that people will insist on coming along and trying to put things in it." - Terry Pratchett

Replies are listed 'Best First'.
Re^3: chdir: failure
by PerlMe (Novice) on Jul 17, 2007 at 19:16 UTC
    Thanks all,
    It works now. The problem was $date string terminated with a new-line "\n".
    I appreciate all the comments on '$user', '$!' and 'chomp'.
    Rami

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://626997]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (2)
As of 2024-04-20 03:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found