Summary: hi, i want to create a directory from my cgi script written in korn shell. but there is no out put. means that this script work for other commands lik...
Summary: I wish to handle the cursor in korn shell when I test a choice but I want that the cursor don't go in a new line. In this case: print -n "Yes or No >>...
Summary: I have written a script to login to various network equip and perform automated functions. Is there a way to hide the input from the keyboard on read...
Summary: When trying to escape special character * - it doesn't seem to work. In korn shell trying to store a local variable as follows sample=test* echo $samp...
Summary: Looks like the HTML on this board has swallowed the less-than signs. Try: ftp ftp.pwp.blueyonder.co.uk <<-ENDFTP ascii get index.html bye ENDFTP (You ...
Summary: Hi: The Korn shell automatically loads a function the first time it's called provided the function resides in a directory in the shell variable FPATH ...
Summary: I never heard of a "goto" in Korn shell. Why on Earth would you want a "goto" command? I thought that went out with Sinclair Basic. These days we have...
Summary: If I try to kill a shell from that shell's command prompt itself, then what happens.Im doing it from korn shell. Ex: /bin/ksh echo $KSHPID It outputs ...
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...
Summary: I am sure this has been done before in Korn Shell without using Perl, etc. I need to loop through a directory of files and print the names of those fi...
Summary: Is there anyone knows which command will be suitable to clean up screen in Korn Shell script? I am writing a menu script, before the second submenu di...
Summary: Hi: Since you're data is fixed length, you can do something like this: while read x do f1=$(echo $x|cut -c1-4) f2=$(echo $x|cut -c5-6) f3=$(e...
Summary: hello, i want to know how to initialize a file to an empty one in korn shell scripting? i'm using a file name and building it during a while loop usin...
Summary: hello, I am having trouble creating a batch script to FTP a file from UNIX to NT. It seems that when I invoke the script, the ftp command invokes the...
Summary: I need to know if the connection fails to the remote host in a shell script. Which error codes etc should I check for? What would be in the if stateme...
Summary: Hello, I need to create a korn shell script that will read columns from a seperate file. For instance: filename: inventory color size type red ...
Summary: I know that grep the_specified_string myfile can finds a line that contains a specified string in a file. How can I reach the same goal in a korn she...
Summary: hi, I have a question. I'm doing a Korn Shell script. I want to find out the list of users who have either logged in or logged out during the period...
Summary: Hi, I have an env file with multiple lines separated by semicolon. I would like to retrieve a particular line from the file, extract each field separa...
Summary: I am trying to write a Korn shell script to use sftp to transfer data from one system to another. I cannot seem to figure out how to send the required...
Summary: Appreciate if can give help in writing Korn Shells to resolve the following problems: To check that all users in the /etc/passwd file have a home dire...