Tagged Questions

The Korn Shell is a POSIX shell/scripting language distributed with many unix and linux distributions

learn more… | top users | synonyms

25
votes
7answers
24k views

How to mkdir only if a dir does not already exist?

I am writing a script to run under the korn shell on AIX. I'd like to use the mkdir command to create a directory. But the directory may already exist, in which case I don't want to do anything. So I ...
12
votes
4answers
139 views

Why does `if $(true) ; then … fi` succeed?

Inspired by this question: What should an if statement do when the condition is a command substitution where the command produces no output? NOTE: The example is if $(true); then ..., not if true ; ...
12
votes
3answers
845 views

Why doesn't **find** find anything?

I'm looking for shell scripts files installed on my system, but find doesn't work: $ find /usr -name *.sh But I know there are a ton of scripts out there. For instance: $ ls /usr/local/lib/*.sh ...
9
votes
7answers
12k views

Shortest command to calculate the sum of a column of output on Unix?

I'm sure there is a quick and easy way to calculate the sum of a column of values on Unix systems (using something like awk or xargs perhaps), but writing a shell script to parse the rows line by line ...
9
votes
12answers
4k views

Best practises for holding passwords in shell / Perl scripts?

I've recently had to dust off my Perl and shell script skills to help out some colleagues. The colleagues in question have been tasked with providing some reports from an internal application with a ...
8
votes
5answers
15k views

Select unique or distinct values from a list in UNIX shell script

I have a ksh script that returns a long list of values, newline separated, and I want to see only the unique/distinct values. It is possible to do this? For example, say my output is file suffixes in ...
7
votes
8answers
5k views

Can I get the absolute path to the current script in Korn Shell?

Is it possible to find out the full path to the script that is currently executing in Korn shell ? i.e. if my script is in /opt/scripts/myscript.ksh, can I programmatically inside that script ...
6
votes
4answers
342 views

Shell Programming: What's the difference between $(command) and `command`

In sh/ksh/bash to store the output of a command as a variable you can do either MY_VAR=$(command) #or you can do MY_VAR=`command` What's the difference if any between the two methods?
6
votes
8answers
837 views

How to deal with NFS latency in shell scripts

I'm writing shell scripts where quite regularly some stuff is written to a file, after which an application is executed that reads that file. I find that through our company the network latency ...
6
votes
5answers
3k views

Korn shell wraparound

Okay, I'm sure this is simple but it is driving me nuts. I recently went to work on a program where I've had to step back in time a bit and use Redhat 9. When I'm typing on the command line from a ...
6
votes
6answers
942 views

Why doesn't **sort** sort the same on every machine?

Using the same sort command with the same input produces different results on different machines. How do I fix that?
5
votes
9answers
2k views

In a unix shell, how to get yesterday's date into a variable?

I've got a shell script which does the following to store the current day's date in a variable 'dt': date "+%a %d/%m/%Y" | read dt echo ${dt} How would i go about getting yesterdays date into a ...
5
votes
4answers
229 views

ksh-style left and right string stripping up to matched expression?

How can one strip the left parts and right parts off strings up to a matching expression as in ksh? For instance: ${name##*/} ${name%/*} (see http://www.well.ox.ac.uk/~johnb/comp/unix/ksh.html ...
5
votes
6answers
517 views

How to detect if a script is being sourced

I have a script where I do not want it to call 'exit' if it's being sourced. Initially I though checking if $0 == bash but this has problems if the script is sourced from another script, or if the ...
5
votes
5answers
1k views

Shell script to stop a java program

Is there a way to stop a java program running using a shell script by knowing the name alone.I am using ksh shell
5
votes
7answers
7k views

Monitor folder for new files using unix ksh shell script or perl script and trigger perl script

I've been Googling and Overflowing for a bit and couldn't find anything usable. I need a script that monitors a public folder and triggers on new file creation and then moves the files to a private ...
5
votes
13answers
8k views

Bash or Ksh? [closed]

I'm not new to *nix, however lately I have been spending a lot of time at the prompt to do my development for my job. My question is what are the advantages of using Korn Shell or Bash Shell? Where ...
4
votes
4answers
104 views

linux + ksh + Round down or Round up - float numbers

in my ksh script I need to calculate only integer numbers Sometimes I get float numbers such as 3.49 or 4.8...etc so I need to translate the float numbers to integer’s numbers according to the ...
4
votes
1answer
51 views

Is it necessary to specify traps other than EXIT?

I see a lot of shell scripts that do: trap cmd 0 1 2 3 13 15 # EXIT HUP INT QUIT PIPE TERM In every shell I have access to at the moment, all the traps other than 0 are redundant, and cmd will be ...
4
votes
1answer
79 views

Why does $RANDOM generate a similar sequence of values inside two for loops in a shell script?

Here's the script: #!/bin/ksh (for k in $(seq 6); do echo $RANDOM; done) > a.txt (for k in $(seq 6); do echo $RANDOM; done) > b.txt echo a.txt cat a.txt echo b.txt cat b.txt And an example ...
4
votes
4answers
332 views

KSH runs Java with arguments in variable

I need to run Java from KSH script after getting a list of files in a directory as the arguments for running that Java class. cd /batch/App/ find /batch/files/ -type f -print -name "*.xls" >> ...
4
votes
5answers
1k views

Create a pipe that writes to multiple files (tee)

I would like to create a pipe in a ksh script (using exec) that pipe's to a tee, and sends the output to a pipe. Current: #Redirect EVERYTHING exec 3>&1 #Save STDOUT as 3 exec 4>&2 ...
4
votes
3answers
3k views

How can I flush the input buffer in an expect script?

I'm writing an Expect script and am having trouble dealing with the shell prompt (on Linux). My Expect script spawns rlogin and the remote system is using ksh. The prompt on the remote system contains ...
4
votes
2answers
219 views

$$ in ksh shell

Please tell me the meaning of $$ in ksh shell? I guess it is associated with the process id but I want to know its exact meaning.
4
votes
4answers
954 views

What's the best way of executing tasks in parallel in Ksh and Perl?

I have this large C++ project that I need to build on a platform that does not have a parallel make (like make -j on Linux). The server has 6 CPU's and I want to do a parallel build manually. I can ...
4
votes
5answers
2k views

How do you use ssh in a shell script?

When I try to use an ssh command in a shell script, the command just sits there. Do you have an example of how to use ssh in a shell script?
4
votes
10answers
2k views

Shell scripting input redirection oddities

Can anyone explain this behavior? Running: #!/bin/shecho "hello world" | read var1 var2echo $var1echo $var2 results in nothing being ouput, while: #!/bin/shecho "hello world" > ...
3
votes
3answers
193 views

How to convert a cron to a daemon

I have a cron shell script which calls a stored procedure to do some operation. I want to know how can I change that cron to a daemon. Here's what I have. #!/bin/ksh # @(#)abc.sh . ...
3
votes
2answers
32 views

problem in scripting

when I am executing this on the command line: awk 'BEGIN{OFS=FS=","}$3~/^353/{print}' axeM10_20110510100219_59.DAT_353 >log it executes vey nicely without taking much time and instantly gives me ...
3
votes
5answers
1k views

Unix cp argument list too long

I am using AIX. When I try to copy all the file in a folder to another folder with the following command: cp ./00012524/*.PDF ./dummy01 The shell complains: ksh: /usr/bin/cp: 0403-027 The ...
3
votes
2answers
264 views

migrate ksh script from unix to linux

I need to port several hundreds of ksh scripts from SunOS 5.10 to Linux 2.6.18-231.el5. On SunOS, ksh version is Version M-11/16/88i. on linux, ksh Version is AJM 93t+ 2010-02-02 It seems there are ...
3
votes
3answers
2k views

KSH check if string starts with substring

I need to check if the variable has value of string which starts with specified substring. In Python it would be something like this: foo = 'abcdef' if foo.startswith('abc'): print 'Success' ...
3
votes
2answers
367 views

Shell Script (bash/ksh): 20 seconds to read a variable

I need to wait for an input for 20 seconds, after that myscript should continue the execution. I've tried using read -t20 var however this works only on bash. I'm using ksh on Solaris 10. Can someone ...
3
votes
2answers
402 views

Is it possible to view the “source” for a ksh function?

Our ksh environment defines several functions. The names of these functions can be listed using then typeset -f ksh command (or the functions alias). Is it possible to see the definition (ie source ...
3
votes
3answers
1k views

How to get the full pathname of the current shell script?

Is there a less brute-force way to do this? #!/bin/ksh THIS_SCRIPT=$(/usr/bin/readlink -f $(echo $0 | /bin/sed "s,^[^/],$PWD/&,")) echo $THIS_SCRIPT I'm stuck using ksh but would prefer a ...
3
votes
3answers
4k views

Korn Shell - Set “-x” (debug) flag globally?

Is there a way to set the debug mode(set -x) on a KornShell script globally? Currently it seems I have do something like the following: a(){ set -x #commands } b(){ set -x #more ...
3
votes
4answers
365 views

Why doesn't md5 match Perl's Digest::MD5 output?

Running the md5 function from the ksh terminal does not matching the output from a simple Perl script. In the terminal I run: echo -n abc | md5 62fecf21103616856d72e6ffc9bcb06b If I run it using ...
3
votes
5answers
3k views

Regex in Korn Shell

I'm trying to check whether a variable is exactly 2 numbers but I can't seem to figure it out. How do you do check regular expressions in KSH? I've tried if [[ $month =~ "[0-9]{2}" ]] if [[ $month ...
3
votes
3answers
252 views

Is there a bash shortcut for traversing similar directory structures?

The Korn shell used to have a very useful option to cd for traversing similar directory structures e.g. given the following directorys /home/sweet/dev/projects/trunk/projecta/app/models ...
3
votes
4answers
2k views

pushd/popd on ksh?

Is there an equivalent of the bash pushd/popd build in commands for the KSH? For those who don't know what pushd and popd in bash do, here is the description from the man page pushd [-n] [dir] ...
3
votes
3answers
4k views

ksh: how to probe stdin?

I want my ksh script to have different behaviors depending on whether there is something incoming through stdin or not: (1) cat file.txt | ./script.ksh (then do "cat <&0 >./tmp.dat" ...
3
votes
3answers
4k views

Shell script user prompt/input

This is a crude korn shell script that someone else wrote. I don't know much about using shell syntax and I'm not even sure if this is possible. Is there any way for me to run this file and be ...
3
votes
7answers
4k views

shell script templates

what would be your suggestions for a good bash/ksh script template to use as a standard for all newly created scripts? I usually start (after #! line) with a commented-out header with a filename, ...
3
votes
2answers
16k views

Korn Shell code to send attachments with mailx and uuencode?

I need to attach a file with mailx but at the moment I'm not having a lot of success. Here's my code: subject="Something happened" to="somebody@somewhere.com" body="Attachment Test" ...
2
votes
3answers
45 views

Joining two variables based on unique ID using AWK/SED

I have two variables which are comma separated lists. I would like to join these two variables by appending the lines based on their unique id. Example below: var1=" id1,data1,data2,data3 ...
2
votes
2answers
77 views

Transfer all environment variables from one shell to another automatically

I want to transfer all environment variables of the one shell (in my case: kornshell) to another shell (in my case: the z-shell) automatically. If possible, the transfer should be in the startup file ...
2
votes
3answers
112 views

Is Awk and multiple file processing possible?

I need to process two file contents. I was wondering if we can pull it off using a single nawk statement. File A contents: AAAAAAAAAAAA 1 BBBBBBBBBBBB 2 CCCCCCCCCCCC 3 File B contents: ...
2
votes
3answers
55 views

Get function name in Korn shell script

I'd like to get function name for the logging purposes. foo () { echo "get_function_name some useful output" } Is there anything similar to $0 which returns script name built in to provide ...
2
votes
2answers
63 views

Is it possible to bash/ksh call a variable of variable

Is it possible to bash/ksh call a variable of variable, eg: set -A MY_ARRAY ${${var}_something} BR Kolesar
2
votes
2answers
52 views

ksh bad [ … ] syntax not resulting in error

I've just found the following code in a ksh script: if [ "${file_id}" = "0" ] || [ "${file_id}" = "100" ] || "${file_id}" = "100" ] then # Do some stuff fi Note, in particular, the ...

1 2 3 4 5 8