Ask a Question related to UNIX Programming, Design and Development.
-
another2 #1
bash script help
okay, i want a script i want in bash to log into a telnet session and
use a file temp.txt to get the user name
something like:
telnet -l temp.txt 192.168.1.125
i 'm really new to bash and want to make an automated login
program store usernames then eventually use encrypted passwords
(gulp) to connect.
--
Posted via [url]http://dbforums.com[/url]
another2 Guest
-
php+bash script
hello, can anyone give me any hints about running proccesses in linux from php level. i'd like php script run bash-script witch search some data... -
Can not send mail from bash script
Hi , I have created a little script that is running as daemon ( it is hard to say as daemon :)) ) . Then i try to send a mail and the mail is... -
problem using bash variables with command-line perl in bash script
Hi! I have a problem with variables when using command-line perl in a bash script. The script should update a date (in 2003-10-10 form) if the... -
bash: can I cd from a script
On Wed, Jul 23, 2003 at 11:17:58AM +0100, David selby wrote: That's right, you can't do that. 'export' exports the variable to subprocesses,... -
bash: esc space not recognised in cat script ?
Hello again, more thorny bash escaped space problems ... in $_tox is a file called "this is a test" .... Below is the portion of code that is... -
Valentin Nechayev #2
Re: bash script help
>>> another2 wrote:
a> okay, i want a script i want in bash to log into a telnet session and
a> use a file temp.txt to get the user name
a> something like:
a> telnet -l temp.txt 192.168.1.125
telnet -l `cat temp.txt` 192.168.1.125
(assuming that temp.txt contains only one word)
a> i 'm really new to bash and want to make an automated login
a> program store usernames then eventually use encrypted passwords
a> (gulp) to connect.
-netch-
Valentin Nechayev Guest



Reply With Quote

