![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Running command "md5" on remote host not working. | ynilesh | UNIX for Advanced & Expert Users | 1 | 02-01-2008 08:15 AM |
| cd command is not working in my shell script | amitrajvarma | Shell Programming and Scripting | 3 | 10-03-2007 05:04 AM |
| CDE Remote Login is not Working !!! | adel8483 | SUN Solaris | 4 | 03-19-2007 06:35 AM |
| Loop in remote shell command | jhansrod | Shell Programming and Scripting | 1 | 08-08-2005 02:29 AM |
| remote shell command | yatno | UNIX for Dummies Questions & Answers | 4 | 08-10-2001 08:44 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
command not working with rsh(remote shell)
Hi,
root@air01a>SS7Manager -status This command gives correct output. But when I write this in script and run it on SUNMC (which can connect to air01 and by default login as root). It gives the error "SS7manager not found" or "can not open". Here is the scripts. #!/bin/sh rsh air01a SS7Manager -status >> air_log.txt For your refrence if I run below script. It gives correct output without any problem. #!/bin/sh rsh air01a df -h >> air_check.txt rsh air01a sar 1 5 >> air_check.txt Kindly Help!!! |
|
||||
|
Quote:
which SS7Manager Also you could try: ps -ef | grep SS7Manager (because I assume it is running, and "ps" might tell you the full path) If meither doesn't tell you the location you can try: find / -name SS7Manager |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|