Tagged Questions

sh, aka Bourne Shell, is the Unix Shell, the standard shell since v7 Unix. POSIX has standardized the shell, and portable shell scripts should conform to /bin/sh syntax.

learn more… | top users | synonyms

12
votes
4answers
141 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
1answer
9k views

How to declare and use boolean variables in shell script?

Title. The way I tried declaring a boolean variable is by: variable=$false variable=$true Is the syntax correct? Also, if I wanted to update that variable would I just do the same format? ...
10
votes
1answer
294 views

Why is this shell script calling itself as python script?

Obviously this shell script is calling itself as a Python script: #!/bin/sh ## repo default configuration ## REPO_URL='git://android.git.kernel.org/tools/repo.git' REPO_REV='stable' ...
9
votes
2answers
53 views

echoing in shell -n doesn't get printed the right thing

I know that this is some kind of special character issue but I do not know how to solve it. I type in console echo "-n" and nothing get printed :( I also tried with echo -e "-n" to execute ...
8
votes
7answers
4k views

How to execute mongo commands through shell scripts?

I want to execute mongo commands in shell script. I tried following way test.sh #!/bin/sh mongo myDbName db.mycollection.findOne() show collections When I execute above script ./test.sh Then ...
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
1answer
764 views

Logging into Stack Overflow with cURL

I'm working on a project and I want to log into Stack Overflow via cURL. I use Google as my openID provider which means that I need to log into Google first via its API. Here is the code I have so ...
6
votes
1answer
66 views

Accessing stdin during systemd boot

I have a script which solicits a numeric input from the user while booting the computer. The computer is running Fedora 16. It used work, on Fedora 13, but after the upgrade read INTEGER returns ...
6
votes
4answers
286 views

Piping command output to tee but also save exit code of command

I have a shell script in which I wrap a command (mvn clean install), to redirect the output to a logfile. #!/bin/bash ... mvn clean install $@ | tee $logfile echo $? # Does not show the return code ...
6
votes
3answers
64 views

sh: How do I avoid clobbering numbered file descriptors?

When I have exec 3>>file # file descriptor 3 now points to file [ $dryrun ] && exec 3>&1 # or possibly to stdout echo "running">&3 exec 3>&- ...
6
votes
1answer
96 views

Bash bug re $LINENO— or am I just confused?

Consider: #!/bin/bash echo ' ' $LINENO echo '' ' ' $LINENO The first echo correctly prints a 4, but the second echo prints a 5 instead of 6. Am I missing something, or is this a bug? (Using ...
6
votes
2answers
435 views

Setting path for whenever in cron so it can find ruby

My ruby is in /usr/local/bin. whenever can't find it, and setting PATH at the top of my cron file doesn't work either, I think because whenever is running the command inside of a new bash instance. # ...
6
votes
2answers
2k views

Using variables inside a bash heredoc

I'm trying to interpolate variables inside of a bash heredoc: var=$1 sudo tee "/path/to/outfile" > /dev/null << "EOF" Some text that contains my $var EOF This isn't working as I'd expect ...
6
votes
6answers
572 views

Deleting lines from one file which are in another file

I have a file f1: line1 line2 line3 line4 .. .. I want to delete all the lines which are in another file f2: line2 line8 .. .. I'm unable to think anything. I tried something with cat and sed, ...
6
votes
4answers
346 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
5answers
12k views

Problems installing Java EE SDK on Linux

I installed the Java 6 JRE on my VPS just fine, but I can't get the EE SDK installation to even run. root@vps [/usr/java]# java -version java version "1.6.0_18" Java(TM) SE Runtime Environment (build ...
5
votes
5answers
221 views

What does the line “#!/bin/sh” mean in a UNIX shell script?

I was going through some shell script tutorials and found the following sample program: #!/bin/sh clear echo "HELLO WORLD" Can anyone please tell what is the significance of mentioning '!/bin/sh' ...
5
votes
4answers
347 views

Argument list too long - Unix

This scripts will sort the files by date then move the first 2500 files to another directory. When I run below scripts, system prompt out Argument list too long msg. Anyone can help me enhance the ...
5
votes
3answers
2k views

how do i limit the number of results returned from grep? (I would like to say 10 lines max from grep)

how do i limit the number of results returned from grep? (I would like to say 10 lines max from grep) i don't want my computer to work hard i want it to stop after 10 results found by grep... is it ...
5
votes
1answer
177 views

Simplest way to inform a local erlang node from a shell command

I'm running a distributed erlang system with one node per machine. Since DNS is not available I all start them with the same -sname param e.g. erl -sname foo ... A operating-system daemon has the ...
4
votes
1answer
52 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
2answers
386 views

Git Alias - Multiple Commands and Parameters

I am trying to create an alias that uses both multiple git commands and positional parameters. There are stackoverflow pages for each, and it would appear painfully obvious to do both, but I am ...
4
votes
2answers
86 views

Syntax for piping a heredoc; is this portable?

I'm familiar with this syntax: cat << EOF | cmd text EOF but just discovered that bash allows me to write: cat << EOF | text EOF cmd (the heredoc is used as input to cmd). This ...
4
votes
4answers
474 views

Git http - securely remember credentials

Is there a way to securely let git remember my credentials when connecting to remote repositories over HTTP(S)? I've tried the core.askpass approach detailed in git-config to let an external script ...
4
votes
2answers
285 views

Linux proc/pid/fd for stdout is 11?

Executing a script with stdout redirected to a file. So /proc/$$/fd/1 should point to that file (since stdout fileno is 1). However, actual fd of the file is 11. Please, explain, why. Here is ...
4
votes
6answers
5k views

How to copy and edit files in Android shell?

The Android shell does not have the cp command. Android shell also has no sed or grep or vi. I have no adb daemon available. Often I cannot use mv command if source is on a read-only device. What ...
4
votes
4answers
161 views

Is there a way to prevent sh/bash from performing command substitution?

From a C program I want to call a shell script with a filename as a parameter. Users can control the filename. The C is something like (initialization/error checking omitted): sprintf(buf, "/bin/sh ...
4
votes
4answers
4k views

How can I test if line is empty in shell script?

I have a shell script like this: cat file | while read line do # run some commands using $line done Now I need to check if the line contains any non-whitespace character ([\n\t ]), and if ...
4
votes
4answers
227 views

“: > file” VS “> file”

Is there any differences between ": > file" and "> file"? $ : > file.out $ ls -l file.out -rw-rw---- 1 user user 0 Mar 18 21:08 file.out $ > file.out $ ls -l file.out ...
4
votes
3answers
339 views

BASH ^word^replacement^ on all matches?

To clarify, I am looking for a way to perform a global search and replace on the previous command used. ^word^replacement^ only seems to replace the first match. A quick check through a BASH history ...
3
votes
4answers
41 views

How do I pass variables from ruby to sh command

I have a rake task that runs, quite a lot of code. At the end, I need to use sftp and ssh to do some stuff. At the moment I'm unable to automate it. Is there a way to pass to stdout? This seems like ...
3
votes
1answer
127 views

Segfault in ffmpeg when running from a shellscript executed in java

I know there are some questions touching this subject, but none have helped me solve my issue. Purpose: Transcoding a video taken,from a queue, from .mov to h.264 (for now only that) Solution: ...
3
votes
1answer
120 views

How to exclude a list of full directory paths in find command on Solaris

I have a very specific need to find unowned files and directories in Solaris using a script, and need to be able to exclude full directory paths from the find because they contain potentially ...
3
votes
4answers
88 views

Explain “ :> ” command

I have found this command few years ago and used it since then to empty file. But how this really works? :> used like :> /server/logs/access_log
3
votes
3answers
138 views

Reading with cat: Stop when not recieving data

is there any way to tell the cat command to stop reading when not recieving any data. maybe with some "timeout" that specifies for how long no data is incoming. any ideas?
3
votes
4answers
281 views

Delete line in file matching one string but not matching another - SED, BASH?

I want to remove all lines in a file which contain the word "test" but if that line contains "test@" then I do not want to delete it. There is probably some funky way of doing this with sed but I am ...
3
votes
1answer
117 views

Why does `rm -rf` behave differently when used in a git post-receive hook as opposed to shell?

I'm using this example on publishing a website w/ git post receive hooks. The hook pretty much clones the bare repo into a temporary directory, and after generating the site, removes that temporary ...
3
votes
3answers
207 views

How to handle “--” in the shell script arguments?

This question has 3 parts, and each alone is easy, but combined together is not trivial (at least for me) :) Need write a script what should take as its arguments: one name of another command ...
3
votes
2answers
330 views

Shell script behaves strangely when called via an Erlang port

When calling shell scripts from Erlang, I generally need their exit status (0 or something else), so I run them using this function: %% in module util os_cmd_exitstatus(Action, Cmd) -> ...
3
votes
2answers
594 views

How can I have a newline in a string in sh?

This STR="Hello\nWorld" echo $STR produces as output Hello\nWorld instead of Hello World What should I do to have a newline in a string? I'm aware of echo -e, but I'm no sending the string to ...
3
votes
3answers
5k views

Bash Scripting and bc

I'm trying to write a bash script and I needed to do some floating point math. Basically I want to do something like this: NUM=$(echo "scale=25;$1/10" | bc) if [ $? -ne 0 ] then echo bad fi The ...
3
votes
5answers
146 views

Will shell scripts called from python persist after the python script ends?

As part of an automated test, I have a python script that needs to call two shell scripts that start two different servers that need to interact after the calling script ends. (It's actually a jython ...
3
votes
4answers
672 views

Getting user input after stdin has been redirected, in a bourne script

(this is indirectly a part of a much larger homework assignment) I have something like while read LINE do stuff-done-to-$LINE echo "Enter input:" read INPUT ...
3
votes
7answers
955 views

Iterating over two lists in parallel in /bin/sh

I have two lists of equal length, with no spaces in the individual items: list1="a b c" list2="1 2 3" I want to iterate over these two lists in parallel, pairing a with 1, b with 2, etc.: a 1 b 2 ...
2
votes
3answers
37 views

Cron jobs and random times, within giving hours

I need the ability to run a php script 20 times a day at completely random times. I also want it to run only between 9am - 11pm. I'm familiar with creating cron jobs in linux. Although I'm not able ...
2
votes
2answers
55 views

setting a variable on completion of an bg task in ubuntu linux 11.10 64bit shell

so I have this code: uthreads=4 x=1 ...
2
votes
1answer
45 views

can't get php to run a .sh file containing a command to play a music file

I have written a php file that tries to run a .sh file in my system. Here is the code that i have written system("/bin/sh /var/www/hello_world.sh"); the hello_world.sh has this command: cplay -r ...
2
votes
5answers
87 views

Can a shell script tell what directory it's in. No bashisms

Inspired by this question. Can a Bash script tell what directory it's stored in? Is it possible, but without the need for bash. I'm running Ubuntu and before i needed that accepted solution ...
2
votes
1answer
106 views

make linux directory writable using bash command through java code

I have a directory /webroot in my linux server. Which permission set is 771, that means 1 for others. But I want to make it 773 through java code which like is : Process p1 = ...
2
votes
2answers
40 views

Calculate modulo in sh script

I am working on an sh script in which I am in a WHILE loop where a variable gets incremented every iteration, and I'd like to save a file every five iterations. What I'd normally do (say in C) would ...

1 2 3 4 5 6