Tagged Questions

62
votes
86answers
8k views

What is your single most favorite command-line trick using Bash?

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 …
37
votes
33answers
2k 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 …
21
votes
9answers
802 views

Parallelize Bash Script

Lets say I have a loop in bash: for foo in `some-command` do do-something $foo done do-something is cpu bound and I have a nice shiny 4 core processor. I'd like to be able to run up to 4 …
17
votes
29answers
3k 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 …
17
votes
2answers
2k 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.
16
votes
20answers
2k 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?
15
votes
22answers
8k views

Can a Bash script tell what directory it’s 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 …
15
votes
10answers
3k 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?
14
votes
3answers
1k views

How does this bash fork bomb work?

According to Wikipedia, the following is a very elegant bash fork bomb: :(){ :|:& };: How does it work?
14
votes
5answers
2k 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 …
14
votes
7answers
21k 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?
13
votes
0answers
2k views

How can I sort du -h output by size [closed]

I need to get a list of human readable du output. However, du does not have a "sort by size" option, and piping to "sort" doesn't work with the human readable flag. For example, running: du | sort …
13
votes
4answers
786 views

How can I send the stdout of one process to multiple processes using (preferably unnamed) pipes in Unix (or Windows)?

I'd like to redirect the stdout of process proc1 to two processes proc2 and proc3: proc2 -> stdout / proc1 \ proc3 -> stdout I tried proc1 | (proc2 & …
12
votes
7answers
578 views

A better Linux shell?

I use bash, and have done so for over a decade - but occasionally I wonder whether there has been any significant new developments in the world of Linux shells. A few years back Microsoft released …
12
votes
4answers
820 views

The following bash command will spawn processes to kernel death. Can you explain the syntax?

I stumbled upon this page and can't understand how this works. This command "exponentially spawns subprocesses until your box locks up". But why? What I grok less are the colons. user@host$ :(){ …

1 2 3 4 5 95 next
15 30 50 per page