Tagged Questions
The term 'shell' refers to a general class of text-based command interpreters most often associated with the Unix & Linux operating systems.
190
votes
13answers
207k 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?
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 ...
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" ...
93
votes
36answers
5k views
What Linux/Unix commands are outdated and have powerful alternatives? [closed]
Today I discovered you can make less act like tail -f.
less filename, then press Shift-F to start follow mode.
Just like tail, but you have all the added features of less - like scrolling, ...
89
votes
17answers
76k views
grep --exclude/--include syntax (do not grep through certain files)
I'm looking for the string "foo=" (without quotes) in text files in a directory tree. It's on a common Linux machine, I have bash shell:
grep -ircl "foo=" *
In the directories are also many binary ...
77
votes
20answers
83k views
SED: How can I replace a newline (\n)?
I unsuccesfully tried:
sed 's#/\n# #g' file
sed 's#^$# #g' file
How to fix it?
75
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
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
13answers
16k views
PowerShell vs. Unix Shells
I'm debating whether I should learn PowerShell, or just stick with Cygwin/Perl Scripts/Unix Shell scripts, etc.
The benefit of PowerShell would be that the scripts could be more easily used by ...
70
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
35k 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
56
votes
21answers
27k views
Linux command to sum integers, one per line?
I am looking for a command that will accept as input multiple lines of text, each line containing a single integer, and output the sum of these integers.
As a bit of background, I have a log file ...
53
votes
10answers
88k views
how to use ssh to run shell script on a remote machine? [closed]
could you please suggest me how to run a shell script on remote machine? I have ssh configured on both machine A and B. My script is on machine A which will perform a task on machine B.
Awaiting ...
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 ...
51
votes
5answers
18k views
How to run mvim (MacVim) from Terminal?
I have MacVim installed and I am trying to set it up as the editor for Git (version control), but I can't run 'mvim' from the command line as it isn't recognised. How do I setup mvim so I can run it ...
50
votes
10answers
17k views
How do I use Ruby for shell scripting?
I have some simple shell scripting tasks that I want to do
for example: Selecting a file in the working directory from a list of the files matching some regular expression
I know that I can do ...
49
votes
14answers
58k views
Using getopts in bash shell script to get long and short command line options
I wish to have long and short forms of command line options invoked using my shell script.
I know that getopts can be used, but like in Perl, I have not been able to do the same with shell.
Any ideas ...
48
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
12answers
28k views
Why doesn't “cd” work in a bash shell script?
I'm trying to write a small script to change the current directory to my project directory:
#!/bin/bash
cd /home/tree/projects/java
I saved this file as proj, changed the chmod, copied it to ...
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.
39
votes
21answers
8k views
prepend to a file one liner shell?
This is probably a complex solution.
I am looking for a simple operator like ">>", but for prepending.
I am afraid it does not exist. I'll have to do something like
mv myfile tmp
cat myheader ...
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 ...
34
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 ...
34
votes
11answers
48k views
unix shell script find out which directory the script file resides?
Basically I need to run the script with paths related to the shell script file location, how can I change the current directory to the same directory as where the script file resides?
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.
32
votes
4answers
6k views
How to save a Python interactive session?
I find myself frequently using Python's interpreter to work with databases, files, etc -- basically a lot of manual formatting of semi-structured data. I don't properly save and clean up the useful ...
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
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
4answers
20k views
How to execute a command and get output of command within C++?
I am looking for a way to get the output of a command when it is run from within a C++ program. I have looked at using the system() function, but that will just execute a command. Here's an example ...
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 ...
28
votes
5answers
15k views
Mac OS X Terminal Colors
I'm new to Mac having just got one after working with Ubuntu Linux for some time. Among the many things I'm trying to figure out is absence of colors in my the terminal window - like the ones that are ...
28
votes
9answers
48k views
Can a shell script set environment variables of the calling shell?
I'm trying to write a shell script that, when run, will set some environment variables that will stay set in the caller's shell.
setenv FOO foo
in csh/tcsh, or
export FOO=foo
in sh/bash only set ...
27
votes
6answers
26k views
How to tell if a string is not defined in a bash shell script?
If I want to check for the null string I would do
[ -z $mystr ]
but what if I want to check whether the variable has been defined at all? Or is there no distinction in bash scripting?
27
votes
9answers
18k views
Asynchronous shell exec in PHP
I've got a PHP script that needs to invoke a shell script but doesn't care at all about the output. The shell script makes a number of SOAP calls and is slow to complete, so I don't want to slow down ...
26
votes
4answers
21k views
Logical operators (“and”, “or”) in DOS batch
How would you implement logical operators in DOS Batch files?
26
votes
5answers
24k views
Redirecting StdErr to a Variable in a Bash Script
Let's say I have a script like the following:
useless.sh
echo "This Is Error" 1>&2
echo "This Is Output"
And I have another shell script:
alsoUseless.sh
./useless.sh | sed ...
26
votes
6answers
4k views
Worth switching to zsh for casual use? [closed]
The default shell in Mac OS X is bash, which I'm generally happy to be using. I just take it for granted. It would be really nice if it auto-completed more stuff, though, and I've heard good things ...
25
votes
4answers
626 views
How does the #! work?
In a script you must include a #! on the first line followed by the path to the program that will execute the script (e.g.: sh, perl). As far as I know though, the # character denotes the start of a ...
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 ...
25
votes
6answers
22k views
How to determine whether a given Linux is 32 bit or 64 bit?
When I type uname -a, it gives the following output.
Linux mars 2.6.9-67.0.15.ELsmp #1 SMP Tue Apr 22 13:50:33 EDT 2008 i686 i686 i386 GNU/Linux
How can I know from this that the given OS is 32 or ...
25
votes
8answers
7k views
Elegant way to search for UTF-8 files with BOM?
For debugging purposes, I need to recursively search a directory for all files which start with a UTF-8 byte order mark (BOM). My current solution is a simple shell script:
find -type f |
while read ...
24
votes
3answers
14k views
Python 3 online interpreter / shell
Does anyone know about an online interpreter like http://codepad.org/ or http://try-python.mired.org/ with Python 3?
24
votes
11answers
26k views
How do I test if a variable is a number in bash?
I just can't figure out how do I make sure an argument passed to my script is a number or not.
All I want to do is something like this:
test *isnumber* $1 && VAR=$1 || echo "need a number"
...
23
votes
8answers
12k views
Executing Shell Scripts from the OS X Dock?
I'm sure the answer is ridiculously obvious, but so far Google hasn't been very helpful. How do I set up a shell script to execute from the dock? It seems that simply creating a shortcut will open the ...
23
votes
5answers
6k views
Bash autocompletion in Emacs shell-mode
In the GNOME Terminal, Bash does smart auto-completion. For example
apt-get in<TAB>
becomes
apt-get install
In Emacs shell-mode, this auto-completion doesn't work, even after I explicitly ...
23
votes
8answers
15k views
How to resolve symbolic links in a shell script
Given an absolute or relative path (in a Unix-like system), I would like to determine the full path of the target after resolving any intermediate symlinks. Bonus points for also resolving ~username ...