Executing a unix command


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Executing a unix command
# 1  
Old 12-20-2006
Executing a unix command

Hi,
I need to execute the following unix command through my java code -

zip -e

When i execute this command from the command prompt, i am prompted for a password in the following manner -
Enter password:
Verify password:

Is it possible to provide the password inthe first command itself so that i am not prompted for it?

Any help in this regard will be highly appreciated!!
# 2  
Old 12-20-2006
Some more info

Hi,
I just want a general approach for this problem for any unix command. That is, say any unix command on execution , prompts for some more info to be entered (say password in my case); how can i provide that additional info in the first command itself so that i can bypass the prompt for additional data.


Regards,
Jacob
# 3  
Old 12-20-2006
Not sure about java, but you can do this with expect - http://expect.nist.gov/
Tornado
# 4  
Old 12-20-2006
You could also try ksh's co-process. See the man pages of ksh to know more on co-process.
# 5  
Old 12-20-2006
Thanks for the reply.

Can you give some examples?
# 6  
Old 12-20-2006
Here's some expect script examples:
http://www.cpqlinux.com/expect.html

And here's my ftp ksh script that uses a co-process
https://www.unix.com/showpost.php?p=3...4&postcount=27
Tornado
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

How to find IP of user machine executing a particular UNIX command?

Hello, Our applications are deployed in SunOS 5.10 servers. All the team members use a same username/pwd to login to the box. Very often we face issue were we could see that weblogic server instance are KILLED and we are not able to trace who executed kill command. All team members use PUTTY to... (2 Replies)
Discussion started by: santtarius
2 Replies

2. UNIX for Advanced & Expert Users

Error executing sqlcmd command through UNIX

Hi All, I am trying to execute a set of sql statements in sql server 2008 using the sqlcmd command in unix and passing the query in the "input" parameter. It is giving me an error "incorrect syntax near 2014". The below statement is giving an error : declare date_val datetime, ... (4 Replies)
Discussion started by: Rahul Raj
4 Replies

3. Solaris

Role not executing command

Hello Guys, I am studying RBAC. So I create a role called sysadm and gave it the "shutdown" profile. Now when I switch to that role, and execute the shutdown command $ shutdown -y -g0 -i5 The system responds with : shutdown: not found Can anyone help me with this please?... (1 Reply)
Discussion started by: cjashu
1 Replies

4. Shell Programming and Scripting

Error while executing sh command

Hi, I have 2 files temp1.sh and temp2.sh as follows: =========== temp1.sh =========== echo "session1" sh temp2.sh echo "exit session2 and enter session1" ================================= ============= temp2.sh ============= echo "session2" sh echo "exit session2"... (5 Replies)
Discussion started by: RP09
5 Replies

5. UNIX for Dummies Questions & Answers

executing a command using ssh

Hi All, I am trying to execute a command using ssh as below. ssh user123@servername "which ctmcontb" It is gving the error as below no ctmcontb in /usr/bin /usr/sbin /opt/sysadm/bin Not sure from where the PATH is getting picked up. But When I login direclty to the server I am... (5 Replies)
Discussion started by: anilreddy103
5 Replies

6. Shell Programming and Scripting

Executing a variable that strores a unix command string

Hi: I have a touble with executing a variable that stores a unix command string. The following would be excuted fine: command='ls -l' `echo $command` However, the following gives me an error: command='(uuencode file1 file1; uuencode file2 file2) | mailx email_id' `echo... (1 Reply)
Discussion started by: sagewise
1 Replies

7. Shell Programming and Scripting

executing *.bat file on windows from Unix box via ftp command

I have created get_list.bat file containing following line: dir /B /O-d >file_list.txt I am executing ftp command from Unix box and transferring get_list.bat file to windows server. In my next ftp command I am trying to execute this test.bat file by entering this line: get_list or by... (9 Replies)
Discussion started by: alx
9 Replies

8. UNIX for Dummies Questions & Answers

Automatically executing a command

Hi I was wondering if anyone knew the answer to this question? I am trying to find a way of executing a command if a certain file is created in the same directory. One way I thought about doing this was to create a FORTRAN program that continually searches for this file. If the file... (8 Replies)
Discussion started by: robbiegregg
8 Replies

9. UNIX for Advanced & Expert Users

Executing JCL through UNIX

Hi, I am trying to execute a JCL in mainframe through solaris but it doent seem to work. I have used the following script on a suggestion #!/bin/ksh ftp -n << EOF open <servername> user <userid> <password> ascii site file=jes put <JCLfilename> quit EOF It requires the JCL file... (8 Replies)
Discussion started by: joneja
8 Replies

10. UNIX for Dummies Questions & Answers

Executing UNIX command from java on NT

Hi - I am totally new to UNIX so please bear with me... I run a java program on Win NT server to do file ftp to UNIX server. I log in, cd, create ftp file on UNIX and quit from my java progam - all works well. Now I want to execute a script on UNIX. At the UNIX 'console'/'shell' (!?) you... (1 Reply)
Discussion started by: CJ Walt
1 Replies
Login or Register to Ask a Question