Tagged Questions
BASH is the Bourne Again SHell, the successor to the classic Unix sh (shell). It's the official shell of GNU.
268
votes
32answers
111k views
Can a Bash script tell what directory it's stored in?
How do I get the path of the directory in which a bash script is located FROM that bash script.
For instance, lets say I want to use a bash script as a launcher for another application. I want to ...
190
votes
13answers
206k views
How to check if a directory exists in a Bash shell script
What command can be used to check if a directory does or does not exist, within a Bash shell script?
156
votes
105answers
19k views
What is your single most favorite command-line trick using Bash? [closed]
We all know how to use <ctrl>-R to reverse search through history, but did you know you can use <ctrl>-S to forward search if you set stty stop ""? Also, have you ever tried running bind ...
125
votes
9answers
40k views
Why are scripting languages (e.g. Perl, Python, Ruby) not suitable as shell languages?
What are the differences between shell languages like bash, zsh, fish and the scripting languages above that makes them more suitable for the shell?
When using the command line the shell languages ...
119
votes
14answers
88k views
Setting environment variables in OS X?
What is the proper way to modify environment variables like PATH in OS X? I've looked on google a little bit and found 3 different files to edit:
/etc/paths
~/.profile
~/.tcshrc
I don't even have ...
96
votes
12answers
125k views
Split string based on delimiter in bash?
How to split string based on delimiter in bash?
I have this string stored in a variable:
IN="bla@some.com;john@home.com"
Now I would like to split the strings by ';' delimiter so that I have
...
95
votes
8answers
54k views
In the bash shell, what is “ 2>&1 ”?
In a unix shell, if I want to combine stderr and stdout into the stdout stream for further manipulation, I can append the following on the end of my command:
2>&1
So, if I want to use "head" ...
94
votes
13answers
70k views
Extract filename and extension in bash
I want to get the filename (without extension) and the extension separately.
The best solution I found so far is:
NAME=`echo "$FILE" | cut -d'.' -f1`
EXTENSION=`echo "$FILE" | cut -d'.' -f2`
This ...
75
votes
10answers
37k views
Calling Bash Commands From Ruby
How do I call console/bash commands from inside of a Ruby Program? Also, how do I get output from these commands back into my program?
74
votes
5answers
13k views
What's the difference between .bashrc, .bash_profile, and .environment?
I've used a number of different *nix-based systems of the years, and it seems like every flavor of Bash I use has a different algorithm for deciding which startup scripts to run. For the purposes of ...
72
votes
12answers
85k views
String contains in bash
Using bash, I have a string:
string=`echo My string`
How can I test if it contains another string?
if [ $string ?? 'foo' ] then;
echo "It's there!";
fi;
Where ?? is my unknown operator. Do I ...
72
votes
36answers
4k views
What should a longtime Windows user know when starting to use Linux?
We've finally moved our websites to a decent host, and for the first time we have Shell Access.
I know very little about using Linux, I can navigate through the file system, read files with Vim and ...
70
votes
9answers
68k views
How do I tell if a file does not exist in bash?
I've used the following script to see if a file exists:
#!/bin/bash
FILE=$1
if [ -f $FILE ];
then
echo "File $FILE exists."
else
echo "File $FILE does not exist."
fi
What's the correct ...
69
votes
43answers
8k views
Hidden features of Bash
Shell scripts are often used as glue, for automation and simple one-off tasks. What are some of your favorite "hidden" features of the Bash shell/scripting language?
One feature per answer
Give an ...
66
votes
14answers
21k views
Check if a program exists from a bash script
How would I validate that a program exists? which would then either return an error and exit or continue with the script.
It seems like it should be easy, but it's been stumping me.
62
votes
7answers
34k views
converting string to lower case in bash shell scripting
Is there a way in bash shell scripting so that I can convert a string into lower case string. For example,
if $a = "Hi all"
I want to convert it to
$a = "hi all"
Thanks a lot for your help
59
votes
13answers
10k views
How can I get `find` to ignore .svn directories?
I often use the find command to search through source code, delete files, whatever. Annoyingly, because Subversion stores duplicates of each file in its .svn/text-base/ directories my simple searches ...
53
votes
3answers
46k views
How to iterate over arguments in bash script
I have a complex command that I'd like to make a shell/bash script of. I can write it in terms of $1 easily:
foo $1 args -o $1.ext
I want to be able to pass multiple input names into the script - ...
53
votes
11answers
32k views
How do I iterate over a range of numbers in bash?
How do I iterate over a range of numbers in bash when the range is given by a variable?
I know I can do this:
for i in {1..5}; do echo $i; done
Which gives:
1
2
3
4
5
Yet how can I ...
47
votes
8answers
47k views
How do I prompt for input in a Linux shell script?
I want to pause input in a shell script, and prompt the user for choices. The standard 'Yes, No, or Cancel' type question. How do I accomplish this at a typical bash prompt?
46
votes
12answers
11k views
Can I use Python as a bash replacement?
I currently do my textfile manipulation through a bunch of badly remembered awk, sed, bash and a tiny bit of Perl.
I've seen mentioned a few places that python is good for this kind of thing, I know ...
46
votes
13answers
27k views
In the bash script how do I know the script file name?
How can I determine the name of the bash script file inside the script itself?
Like if my script is in file runme.sh, than how would I make it to display "You are running runme.sh" message without ...
43
votes
9answers
13k views
How Can I Remove .DS_Store Files From A Git Repository?
How can I remove those annoying Mac OS X .DS_Store files from a Git repository?
42
votes
14answers
29k views
Best way to kill all child processes
I basically want to kill a whole process tree. What is the best way to do this using any common scripting languages. I am looking for a simple solution.
41
votes
7answers
5k views
Real-time history export amongst Bash terminal windows
Is it possible to share the same Bash history file instance amongst all the terminal windows in real time? I want commands executed in one window to be available to all other terminal windows without ...
40
votes
6answers
17k views
Timeout a command in bash without unnecessary delay
This answer to a similar question proposes a 1-line method to timeout a long-running command from the bash command line:
( /path/to/slow command with options ) & sleep 5 ; kill $!
But it's ...
39
votes
3answers
836 views
Why C-forkbombs don't work like bash ones?
If I run the classical bash forkbomb:
:(){ :&:&};:
my system hangs after a few seconds.
I tried to write a forkbomb in C, here is the code:
#include <unistd.h>
int main( )
{
...
39
votes
5answers
24k views
Syntax for a single-line BASH infinite while loop
Having trouble coming up with the right combination of semicolons and/or braces. I'd like to do this, but as a one-liner from the command line:
while [ 1 ]
do
foo
sleep 2
done
38
votes
9answers
33k views
How do I remove the file suffix and path portion from a path string in Bash?
Given a string file path such as "/foo/fizzbuzz.bar" how would I use bash to extract just the "fizzbuzz" portion of said string?
37
votes
12answers
17k views
How to count all the lines of code in a directory recursively?
We've got a PHP application and want to count all the lines of code under a specific directory and its subdirectories. We don't need to ignore comments, as we're just trying to get a rough idea.
wc ...
36
votes
5answers
4k views
How does this bash fork bomb work?
According to Wikipedia, the following is a very elegant bash fork bomb:
:(){ :|:& };:
How does it work?
35
votes
6answers
54k views
How to wait in bash for several subprocesses to finish and return exit code !=0 when any subprocess ends with code !=0?
How to wait in a bash script for several subprocesses spawned from that script to finish and return exit code !=0 when any of the subprocesses ends with code !=0 ?
Simple script:
#!/bin/bash
for i ...
34
votes
10answers
32k views
How to output MySQL query results in csv format?
Is there an easy way to run a MySQL query from the linux command line and output the results in csv format?
Here's what I'm doing now:
mysql -u uid -ppwd -D dbname << EOQ | sed -e 's/ ...
33
votes
6answers
5k views
How to programmatically determine the current checked out Git branch
In a Unix or GNU scripting environment (e.g. a Linux distro, Cygwin, OSX), what is the best way to determine which Git branch is currently checked out in a working directory?
One use of this ...
33
votes
4answers
69k views
How to run a .sh-script in an Unix console/Mac terminal?
I know it, forgets it and relearn it again. Time to write it down.
33
votes
11answers
36k views
How can I escape white space in a bash loop list?
I have a bash shell script that loops through all child directories (but not files) of a certain directory. The problem is that some of the directory names contain spaces.
Here are the contents of ...
32
votes
17answers
4k views
bash - automatically capture output of last executed command into a variable
I'd like to be able to use the result of the last executed command in a subsequent command. For example,
$ find . -name foo.txt
./home/user/some/directory/foo.txt
Now let's say I want to be able to ...
31
votes
2answers
11k views
How do I check syntax in bash without running the script?
Is it possible to check a bash script syntax without executing it?
Using Perl, I can run perl -c 'script name', is there any equivalent command for bash scripts?
Thanks.
30
votes
2answers
6k views
How to pipe stderr, and not stdout?
I have a problem that writes information to stdout and stderr, and I need to grep through what's coming to stderr, while disregarding stdout.
I can of course do it in 2 steps:
command > /dev/null ...
30
votes
13answers
30k views
Bash shell for Windows?
Is there anything like bash shell in Windows with at least basic set of frequently used commands like ls, pwd, tail, etc?
30
votes
6answers
6k views
Pipe to/from Clipboard
Is it possible to pipe to/from the clipboard in bash? Whether it's piping to/from a device handle or using an auxiliary application, I can't find anything.
For example, if /dev/clip was a device ...
30
votes
6answers
28k views
Redirect stderr and stdout in a bash script
I want to redirect both stdout and stderr of a process to a single file. How do I do that in bash?
30
votes
2answers
12k views
Capturing multiple line output to a bash variable
I've got a script 'myscript' that outputs the following:
abc
def
ghi
in another script, I call:
declare RESULT=$(./myscript)
and $RESULT gets the value
abc def ghi
Is there a way to store the ...
30
votes
9answers
9k views
design patterns or best practices for shell scripts
Does anyone know of any resources that talk about best practices or design patterns for shell scripts (sh, bash etc...)?
29
votes
8answers
9k views
BASH: Possible to abort shell script if any command returns a non-zero value?
I have a Bash shell script that invokes a number of commands.
I would like to have the shell script automatically exit with a return value of 1 if any of the commands return a non-zero value.
Is this ...
29
votes
4answers
12k views
How do I write stderr to a file while using “tee” with a pipe?
I have the below command line argument which will print the output of aaa.sh to the screen while also writing stdout to bbb.out; however I would also like to write stderr to a file ccc.out. Any ...
29
votes
14answers
3k views
What is your favorite Bash prompt? [closed]
What are some elements in your favorite bash prompt?
I like to have an indicator of the success of the most recent command, like so (in .bashrc):
function exitstatus {
EXITSTATUS="$?"
...
29
votes
23answers
7k views
what's in your .bashrc?
.bashrc modifications are like nesting for developers. All I have right now is a few aliases and some PATH modifications. What's in yours?
28
votes
7answers
6k views
Remove all .pyc files from a project
I've renamed some files in a fairly large project and want to remove the .pyc files they've left behind. I tried the bash script:
rm -r *.pyc
But that doesn't recurse through the folders as I ...
28
votes
4answers
5k views
Is [[ ]] preferable over [ ] in bash scripts?
A co-worker claimed recently in a code review that the [[ ]] construct is to be preferred over [ ] in constructs like
if [ "`id -nu`" = "$someuser" ] ; then
echo "I love you madly, $someuser"
...