The Bourne Shell is the ancestor of the Korn Shell and Bash.

learn more… | top users | synonyms

0
votes
1answer
30 views

Bourn shell - make a loop for each element in an array?

This is my array: ListTabs="" ListTabs=$ListTabs"T_Tab1\n" ListTabs=$ListTabs"T_Tab2\n" ListTabs=$ListTabs"T_Tab3" echo $ListTabs arrArr=0 OLD_IFS=$IFS; IFS=\n for listArr in ${ListTabs[@]}; do ...
0
votes
1answer
31 views

“Too few arguments” in Bourne Shell script

I'm very new to this. I'm simply trying to test for the existence of a given file, and touch it if it doesn't exist. Command line responds that I have too few arguments. Obviously I'm missing ...
0
votes
1answer
30 views

To quote or not to quote, that is the <q-word-not-allowed-in-titles>

When shell programming we need to care for proper quoting, so parameter expansion does the right thing with respect to white space in expansions, or to prevent word splitting getting in the way. The ...
-1
votes
1answer
35 views

Redirecting output in unix creates corrupted files

I am new to unix and scripting language. I wrote the following script and called it scr.sh: #!/bin/sha ls > file1 ls > file2 I run it using:sh scr.sh This creates the two files, however ...
0
votes
0answers
37 views

how to run bourne shell function in the background

here's the situation, I have the executable written by someone else that dies randomly and the method of working around it is to relaunch the job up to 3 times (4 times total). I also need to run say ...
0
votes
0answers
38 views

Run time of brute-force string guessing bourne-shell script

I am writing a script to try to guess a string. The string is 12 characters in length and can be one of 18 different alphanumeric characters. I can confirm whether I have the correct string only once ...
0
votes
1answer
50 views

Remove temporary files at end of bourne shell script

I've tried to use trap to remove a temporary file at the end of a Bourne shell script, but this doesn't work: trap "trap \"rm \\\"$out\\\"\" EXIT INT TERM" 0 This is inside a function, by the way, ...
0
votes
1answer
36 views

Use Sed to Update Text in Bourne Shell

I'm trying to update a file in Bourne Shell. The user inputs a name and then is prompted to change the persons name, age and courses. Here's part of the code I've written: echo "please enter the ...
0
votes
1answer
35 views

Editing a file in Bourne Shell

I'm working on building a student database in Bourne Shell Script. I need to be able to update a line of data that's been previously entered into the file, and I'm having trouble figuring out how to ...
0
votes
2answers
49 views

Using While and Grep together in Bourne Shell Script

I'm building a student database in Bourne Shell Script, and this is literally the very first time I've ever even seen code written like this, so I'm terribly out of my element. I need to make it so ...
1
vote
2answers
48 views

shell glob expansion with spaces

I'd like to write a Posix shell script function that will match on a pattern with both spaces and glob characters (*?) that need to be expanded. In Python, glob.glob('/tmp/hello world*') will return ...
0
votes
2answers
45 views

My very basic command is failing on cron but runs fine otherwise, in bash

I'm trying this very basic thing, to output a random number: NUMBER=$[ ( $RANDOM % 500 ) + 1 ]; echo $NUMBER > /tmp/out It runs fine directly on the CLI in Debian, but when I try to cron this, ...
2
votes
2answers
91 views

Valid assignment operators Bash

In my bash script i am trying to using the equals (=) operator as input for an IF statement, can this be done? echo "Plese enter an operator as shown in the brackets (-)subtract, (*)Multiply, (+)Add, ...
1
vote
2answers
126 views

Bash floating points and negative values

Hi i am tring to produce flaoting point precision using the following code let number1=0 number2=0 operator=+ printf "%0.2f\n" result=$(( number1 $operator number2 )) The code works without the ...
0
votes
2answers
41 views

bourne shell lower case

Is there a way to make bourne shell not care about case on string comparisons? alternatively, can I convert a variable to all lowercase? I was trying to use tr with echo, but never could get it to ...
1
vote
1answer
289 views

shell script to transfer yesterday's logfiles to a ftp server

I'm trying to write a shell script that will be triggered everyday and transfer yesterday's logfiles from multiple servers to a ftp server. So far I have managed to copy them and rename them ...
2
votes
4answers
66 views

grouping in shell script

While passing arguments to a function, how to group parameters into a single argument? example if my script file "my_script.sh" has a function like echo_arguments() { echo $1 } ...
2
votes
5answers
69 views

How to run a command from a variable in shell scripting

How to run a command after assigning it to some variable in shell scripting? example: command_name=echo Now, is there a way to use "$command_name hello world" instead of "echo hello world" ?
1
vote
3answers
238 views

Shell scripting to print list of elements

Is there any command in shell scripting which is similar to "list" in tcl? I want to write a list of elements to a file (each in separate line) .But, if the element matches a particular pattern then ...
0
votes
1answer
194 views

Calling a function in Bourne Shell

Is it possible to call a function (defined in a shell script) from Unix console? I have a function like add () { a=$1 b=$2 c=`expr $a + $b` } This is defined in the script "my_script.sh" . How ...
1
vote
4answers
74 views

Why does cd in backticks never work [duplicate]

Possible Duplicate: Why doesn’t “cd” work in a bash shell script? Why does cd command in backticks or $(..) never change to the new directory. Any idea how to do it in a single command, ...
0
votes
1answer
170 views

Bad substitution error on Solaris for arguments 10 and above

I need to handle more than 10 parameters in script. I was declaring and assigning after 9th parameter like below. param10=${10} param11=${11} param12=${12} It is working fine in linux, but not in ...
1
vote
2answers
92 views

Bourne shell scripts with user input

I'm trying to teach myself the basics of Bourne shell scripting using a textbook I borrowed from the library, and I'm working through the questions at the end of each chapter. However, I just got to ...
4
votes
3answers
384 views

POSIX Bourne shell equivalent for Bash's printf %q

Suppose I have a #!/bin/sh script which can take a variety of positional parameters, some of which may include spaces, either/both kinds of quotes, etc. I want to iterate "$@" and for each argument ...
5
votes
3answers
104 views

Bourne shell: send arguments $2 to $N to variadic function?

Google has finally failed me. I cannot seem to find how to do this in Bourne shell scripting: I am writing a shell script to handle all of my testing for a project. I've set up functions for each ...
1
vote
2answers
137 views

Purpose and function of “$@” in tclsh “$0” “$@”

I have searched long and hard but could only find a short explanation that $@ expands something. Could someone please explain or provide me with a link to a detailed explanation of the purpose of ...
2
votes
1answer
31 views

how is echo -n $“some string” different then echo -n “some string”

I am creating a startup script for my own service and looking at some of the existing service startup scripts for help. In the /etc/init.d/atd startup script I see the following construct: echo -n ...
6
votes
1answer
200 views

Simultaneously watch for signals and process exit in Bourne shell

I have a Bourne shell (/bin/sh) script (for portability) that wants to monitor another program. It should start the other program, then wait for it to exit. When the second program exits, it does ...
0
votes
1answer
122 views

Bourne shell script to check if time was updated from server

I am on a TPLink Router running OpenWRT. When the device starts I want one LED to be on until the system time was updated from the ntp server. This is my approach: #!/bin/sh echo 0 > ...
1
vote
3answers
56 views

What does the -x and -c string comparison options do?

I'm in the process of porting over another shell script when I came across the following: if [[ ! -x $DVDREC ]]; then print "ERROR: $DVDREC not found. Exiting ..." exit 1 fi if [[ ! -c ${DVDDEV} ...
0
votes
1answer
126 views

for loop in remote host is not working - shell script

ssh $hname "cd /opt/tomcat/webapps/aware/WEB-INF/classes/com && for FNAME in `tar tvf /tmp/prop.tar | awk '{print $6}'` do if test ! -s "/tmp/$fname/prop_bkup.tar" then ls $FNAME ...
1
vote
1answer
175 views

How to create an echo device in Linux?

I'm working on porting this bash script over to Linux from HP-UX. There appears to be a command remsh opcfdp01 "find ${TOOLS_DIR} -user ${ADMIN_USER} -exec chmod a+rwx {} \;" < /dev/echo > ...
1
vote
1answer
172 views

xxd -r without xxd

I'm running on a scaled down version of CentOS 5.5 without many tools available. No xxd, bc, or hd. I can't install any additional utilities, unfortunately. I do have od, dd, awk, and bourne shell ...
3
votes
1answer
175 views

what is ${ } command in shell script(bash)

Well I learning Shell Script this one thing is annoying me I cant find what actually ${ } suppose to do I google around to found out that ${ } is used for substitution but what I not able to ...
3
votes
1answer
178 views

Should you change the current directory in a shell script?

I've always mentally regarded the current directory as something for users, not scripts, since it is dependent on the user's location and can be different each time the script is executed. So when I ...
0
votes
0answers
27 views

I want to delete the record if I find a word (dd)in the length(5-7)

In below example I want to delete the record if I find a word (dd)in the length(5-7). Let's think that (5-7) length is FF2. This is a fixed width file. ex f1 ff1 ff2 ff3 sds dd fd sd ss ew dd ...
1
vote
4answers
104 views

Bourne Shell: how to terminate when inner shell command returns nonzero exit code?

I have the following simple shell script: # get all servers from config sshservers=`node $scriptDir/readconfig.js --command cluster.sshservers` #for each server for server in sshservers do ...
1
vote
3answers
648 views

Keychain for ssh-add [closed]

I need to pull from Github all the time and I have a passphrase, but it's a pain, so I typically run... ssh-agent bash ssh-add ~/.ssh/id_rsa <prompt and give passphrase> And that works for ...
1
vote
1answer
619 views

unexpected operator [: git: in bourne shell script 'if' conditional statement

I've watched an excellent shell scripting course through a multitude of videos. Now that I think I am fairly familiar with the Bourne shell, I decided to write my first shell script. Script goal: ...
0
votes
2answers
47 views

script to run a certain program with input from a given directory

So I need to run a bunch of (maven) tests with testfiles being supplied as an argument to a maven task. Something like this: mvn clean test -Dtest=<filename> And the test files are usually ...
2
votes
2answers
375 views

Bourne shell: Force STDOUT to STDERR

I am creating a Subversion post-commit hook. I need to force the output of one command to STDERR, so that the post-commit hook will marshall the message back to the client. How can I force STDOUT to ...
0
votes
2answers
93 views

What is the benefit of wrapping a PHP cron job inside a Bourne Shell Script (.sh)?

I've come across a checklist for creating a new PHP cron at my job and one of the directions is: Add a wrapper file that calls the main part of your job code as cron_[name].sh A sample ...
2
votes
4answers
857 views

Pass shell-escaped string of arguments to a subcommand in Bourne shell

Say I have a command I want to run (cmd) and a variable containing the arguments I want to pass to the function (something like --foo 'bar baz' qux). Like so: #!/bin/sh command=cmd args="--foo 'bar ...
0
votes
2answers
221 views

How to do Git pull only on a branch in shell script?

I have Bourne shell script that will build the HEAD of a specified remote branch or a specified remote tag. The branch/tag is specified as input argument to the script. In the script I perform a git ...
0
votes
2answers
78 views

bourne-shell find-remove

I am trying to write a bourne-shell script that takes a string as a parameter and deletes all files in the directory containing that string I was thinking about using find and execute rm all but I ...
0
votes
1answer
86 views

rename file in bourne shell

I am trying to write a bourne-shell script that takes a directory as a parameter and look for images named ixxx.a and rename them to ixxx_a.img where "xxx means the extension number for exemple image ...
1
vote
3answers
80 views

who return value in bourne-shell

hi I am trying to write a bourne-shell script that takes a name as a parameter and check if the user is logged in and output a message if not. this is what I got so far but my condition is wrong. if ...
0
votes
1answer
53 views

Renaming a file with the parameter of another unix

Hey all I am attempting rename all files that match a certain pattern in B-shell. I am stuck on the syntax of the mv command to rename the file. I am finding all the files like this and I know I ...
0
votes
4answers
1k views

Bourne Shell - How to identify that first parameter is ''

How can a Bourne Shell script know that the first parameter it received was '' (Two single quotation marks? I've tried if [ -z "$1" ] ; then echo "Wrong number of parameters" fi But it seems ...
0
votes
1answer
158 views

nice way to kill piped process?

I want to process each stdout-line for a shell, the moment it is created. I want to grab the output of test.sh (a long process). My current approach is this: ./test.sh >tmp.txt & PID=$! ...

1 2 3