Search Results

2
votes

Shell Script that goes up N folders in the file system

You are only changing the working directory for the copy of the shell that is running the script as an interpreter, not the original shell program that you launched the script from. For a b …
1
vote

How to respond to password prompt when using SCP in a shell script?

Something like this - http://code.google.com/p/enchanter/ ? …
2
votes

SQL*Plus inside Perl script

The advice to use the DBI is good, and definitely the right way to do things, if you're wanting to program Perl scripts against databases. However, to answer your exact question, i …