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: 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: Hi, anyone have any korn shell script that do a recursive files count from parent directory and below? example: /etc/ls -l|wc -l /etc/rc2.d/ls -l|wc -...
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: Here is a Korn Shell script that will also do what you want. It uses the built in features of the shell as opposed to calling awk to do the work. #!/...
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: 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: Under Korn shell 1. write a script to backup a list of files 2. write a script to finds all soft links to specific file. Your kind help would be app...
Summary: Hi, I am new to korn shell pgming..I need a script to do the following.. Delete all back up directories older than 30 days old directory structure is ...
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: How do I execute a sybase stored procedure from a korn shell script? I also want to know what else I need to do within the korn shell script so that i...
Summary: Hi, I'm a beginner script user. It there any shell script example where I could reference on how to check a file in a directory is there before overwr...
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...
Summary: I am tryng to learn shell scripting, and i am still in the begining stages of learning. I have a book that teaches unix, and it says that the correct...
Summary: I used to write korn shell script. How can I store common shell script functions in one or more shell script source files and then store the shell scr...
Summary: Hello, I have a Korn shell script that is doing some data backup automation in Oracle and I'm stuck on the last step. I am wanting to verify that reco...
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: I'm trying to write a korn shell script and I'm at my wits end as to how to solve it! The problem I have is that I'm trying to parse a file and edit s...
Summary: On the Unix side, this korn shell script, will execute your SQL: Unforutunately, I don't know a way of informix creating an Excel spreadsheet. I thi...
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...