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.
Solaris 7:Problem with Korn Shell initia
Name: Craig Date: March 24, 2001 at 07:25:42 Pacific
Comment:
I created a user with "useradd" and made sure its shell would be /bin/ksh. All initialization files (.profile, and all local.*) files are there, but no ".kshrc"?? The manuals of Sun solaris 7 seem to find that OK.
Summary: hi , I have a problem in Korn shell script(in dtksh) my program is like that...... #!/usr/dt/bin/dtksh awk ' BEGIN { FS = ":"; # print '$1','$2','$3' cmdargs = '$#' } { if( cmdargs == 3) {...
Summary: Here it is in Korn shell syntax: integer low high while ! (( low high )) do read low?"Enter a number: " read high?"Enter a higher number: " (( low high )) || print -u2 "No, $...
Summary: If what you are looking for is a random single digit, check "parameter substitution" section of man for ksh, or find good korn shell manual. As an example use the following to generate a single rando...