Better KSH commands


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Better KSH commands
# 8  
Old 11-16-2009
Multiple "echo" commands may be replaced by a "here-document".
This makes the script faster.

Example:

echo "Please enter your choice:"
echo "1 - list current directory"
echo "2 - list current users"
echo "3 - log off"


may be replaced with


cat <<!
Please enter your choice
1 - list current directory
2 - list current users
3 - log off
!
courtesy: SHELLdorado - Shell Tips & Tricks (Programmer)
# 9  
Old 11-16-2009
How is this related to your requirement?

You need to display statements with timestamp after each and every process is completed
# 10  
Old 11-16-2009
ksh supports coprocesses.

Code:
#!/bin/ksh
# mycoprocess.shl
while read value 
do
date
done

Code:
#!/bin/ksh
# your script
./mycoprocess.shl |&

get_date()
{
      print -p 'x'
      read -p dt
      echo $dt
}

call get_date anytime you need a timestamp. You did not post anything else, but if you did the same bactic trick you could modify your coprocess.shl to give multiple responses

BTW - this still leaves one level of child process creation; every date call executes an image. bash has a feature that allows you to create native (i.e., linked into bash) functions in bash written in C, if I recall correctly. That would further improve things.
# 11  
Old 11-16-2009
If you are using ksh93, here is how to avoid forking a process to return the date.
Code:
$ printf "ABC.sh started at %(%H:%M:%S)T\n"
ABC.sh started at 07:43:06

# 12  
Old 11-16-2009
Code:
printf "ABC.sh started at %(%H:%M:%S)T\n"

or
Code:
date "+ABC.sh started at %T"

You can also use the ksh/bash built-in variable SECONDS to keep track run time of each process.
# 13  
Old 11-23-2009
Thanks binlib
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Ksh: run commands from pipe

I create commands within a pipe and finally want them to be executed instead of being displayed on the screen. What is the last stage in this pipe? I found by guessing that "ksh" is working, but is this the best to use here? It boils down to this: echo "print Hello World!"| kshWhat is the... (15 Replies)
Discussion started by: Cochise
15 Replies

2. UNIX for Dummies Questions & Answers

ksh with Oracle commands

works fine. echo "Deleting CHOPOne Coreaccess from LAUA..." $ORACLE_HOME/bin/sqlplus username/password@servername << ! delete from usergrpdtl where username='acker'; commit; ! but not working with "if statement" even $TMPDIR/adlogin.log exists and greater than 0. if then ... (9 Replies)
Discussion started by: lawsongeek
9 Replies

3. Shell Programming and Scripting

Sequential execution of commands in ksh

I need to run few commands in a ksh script sequentially. Some of the commands are jobs submitted to the server and the consecutive commands are dependent on the completion of the jobs submitted to the server. It works if i separate the commands into different files like this #!/bin/ksh... (1 Reply)
Discussion started by: prashob123
1 Replies

4. Shell Programming and Scripting

SED sub commands in KSH not working for me

I am using SED to edit a file (called file) the file contains the word "ERROR" and I want to use SED to: 1. Search for text "ERROR" If found, 2. Append new line with text "hoi" I tried: sed 's/ERROR/ a\hoi' file sed 's/ERROR/ a\ hoi' file I get all the time the error sed:... (7 Replies)
Discussion started by: Alex400
7 Replies

5. UNIX for Dummies Questions & Answers

Calling commands with ksh

Hi, I am not able to run below command on linux, it however works on solaris. If anyone knows the reason and a solution for it can you please let me know ? Linux ----- $> ksh 'echo hi' ksh: echo hi: No such file or directory $> which ksh /usr/bin/ksh Solaris ------ $> ksh 'echo... (2 Replies)
Discussion started by: krishnaux
2 Replies

6. Shell Programming and Scripting

Stringing Multiple commands together in KSH

I am trying to to this findCDZfile=`ls -at `find /opt/apps/busobj/bobj/bobje/data/ -name CDZ*.tmp`` and it doesn't seem to like me - is there a special escape character I need to use? (2 Replies)
Discussion started by: cpare
2 Replies

7. Shell Programming and Scripting

KSH variable containing piped commands

Hi, I am trying to execute a bunch of piped command which are stored in a variable, but only one command executed at a time, and rest of the pipes, commands and their arguments are considered as argument to the very first command. Can you please help me in this? bash-2.05$ cat test.sh... (1 Reply)
Discussion started by: prashant.ladha
1 Replies

8. Shell Programming and Scripting

ssh commands in ksh question

Is there a way to shorten these commands? because this script asks for a password 3 times scp -p /usr/local/bin/${script_name} ${servername$iy]}://usr/local/bin/ ssh ${servernames} /usr/local/bin/${script_name} ssh ${servernames} rm -f /usr/local/bin/${script_name} Basically, I'm creating a... (3 Replies)
Discussion started by: pdtak
3 Replies

9. UNIX for Dummies Questions & Answers

ksh substring commands

I am trying to get various portions of strings in my script, but am getting a substitution error. I followed the syntax that was described when I goggled this, but I can't get anything to work. #! /bin/ksh/ hello="adklafk;afak" #hello=${hello:3} hello=${$hello:3} happy="hey" echo... (1 Reply)
Discussion started by: anderssl
1 Replies

10. Shell Programming and Scripting

ksh GUI commands

I have a few scripts that i would like to make into GUI's. Are there scripting commands to make GUI's if so where can i get the list of commands and what they do or if anyone has an example of it. Anything will help, thanks (1 Reply)
Discussion started by: daltonkf
1 Replies
Login or Register to Ask a Question