54
votes
33answers
3k views
What Linux/Unix commands are outdated and have powerful alternatives?
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, …
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 …
20
votes
12answers
3k 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 …
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 …
16
votes
3answers
756 views
Where does ‘.’ and ‘..’ come from?
What's the story behind our massive repitition of './foo' and 'cd ..'. Where do these two '.' and '..' come from? Where could they be seen as a way of navigating a file system tree for the first time?
…
16
votes
13answers
2k views
How do you use PowerShell?
Windows PowerShell came out last year and got great reviews from many .net bloggers (Hanselman comes to mind). It seemed to be touted as a great new utility that somehow made everything that you would …
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
22k 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
18answers
864 views
Does it make sense to rewrite Perl and shell scripts in java?
I have a bunch of scripts - some in perl and some in bash - which are used for:
Creating a database (tables, indexes,
constraints, views)
Parsing spreadsheets and loading the data into the database
…
13
votes
16answers
802 views
The shell dotfile cookbook
I constantly hear from other people about how much of the stuff they've used to customize their *nix setup they've shamelessly stolen from other people. So in that spirit, I'd like to start a place …
13
votes
4answers
793 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
585 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
16answers
2k views
Can anyone recommend a good modern alternative to bash?
Bash is getting a little long-in-the-tooth. Windows has PowerShell (formerly known as Monad), which is capable of dealing with richer objects than just lines of text. Is there any equivalent new …
12
votes
7answers
2k 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 $F tmp
cat header tmp > …
12
votes
4answers
612 views
Why doesn’t **find** find anything?
I'm looking for shell scripts files installed on my system, but find doesn't work:
$ find /usr -name *.sh
But I know there are a ton of scripts out there. For instance:
$ ls /usr/local/lib/*.sh
…
