Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
rsh calls in ksh shell scripts -
Name: iggy7 Date: January 14, 2008 at 21:26:13 Pacific OS: solaris 9 CPU/Ram: not sure Product: not sure
Comment:
trying to call ksh scripts on other servers using rsh. Error is "command not found".
Logic is:
rsh localdev1 name /path/scriptname.ksh
i.e. rsh | host-machine name | path/scriptname
-permissions are not an issue. Not sure if I should be using SSH for this, or if rsh by default will use the name of the calling script as the host name, thus the script is not found. This is on an older ksh ver, not ksh 93.
Name: wollie Date: January 16, 2008 at 08:04:00 Pacific
Reply:
well - "command not found" either you misspelled the full path name to the script you want to execute on the remote machine or the script can not be found on the remote machine
Summary: Hi, I am writing a shell script to accept input from user and upload the data files using sqlloader. I want to trap Ctrl-Z which is SIGTSTP so that user do not come out of the shell script using Ctrl-...
Summary: In a shell script, how you call a stored procedure depends on the database you're using. You haven't told us what database you're using. This stub ksh script does build 2 variables for the 1st and la...
Summary: awk does not come with ksh. It is a unix (and now DOS/Windows/etc...) utility and is its own interpreter. awk is a great tool and does a good job at what this person wants. However, many companies ...