Is there anything like bash shell in Windows with at least basic set of frequently used commands like ls, pwd, tail, etc?

link|improve this question

feedback

14 Answers

up vote 56 down vote accepted

Cygwin will allow you to run a Bash shell (apart from many other POSIX environment software) under Windows.

link|improve this answer
1  
Yay for cygiwin (I see it's unanimous, but you beat the other two responders by a nose, so, +1 to you!-). – Alex Martelli May 27 '09 at 4:31
1  
Thanks for the recommendation. – SeasonedCoder May 27 '09 at 4:37
3  
-1 for obviously incorrect comment, plenty of people use Windows productively without ever knowing about Cygwin, Bash or *nix. – Alan B Apr 5 '11 at 20:24
4  
I swear, the Windows bashing gets annoying. I'm a *nix fan myself, when it comes to servers...but if i were stuck with a Linux desktop all day every day, i'd probably be one of those "disgruntled employees" shooting up the whole office by the end of the week. At least MS has some idea how to make a useful GUI. – cHao Apr 5 '11 at 22:14
@cHao I'm a die-hard windows user and recently installed an Ubuntu 11 VM on my Win7 box. I have to say, I see a lot of good things in Ubuntu 11 now. Workspaces? Awesome. Installing programs via apt-get? Awesome. It's like a poor/cheap man's Mac. – jcollum Mar 28 at 23:46
show 1 more comment
feedback

It's not bash compatible, but if you haven't used it yet, you should really check out Powershell. pwd and ls are built in aliases already. They do essentially the same thing as their *NIX counterpart, only instead of returning a string, they return .NET objects.

pwd, returns a PathInfo object, so if you want the current drive name, just run:

(pwd).Drive

ls returns an array of DirectoryInfo and FileInfo objects, so listing last access time is simply:

ls | select LastAccessTime

Or append the current time to every .txt file in a directory structure:

(ls . -Include *.txt -Recurse).AppendText([DateTime]::Now)

For tail functionality, try cat -wait. Or else take a look at this script which gives somewhat closer functionality.

link|improve this answer
13  
+1 PowerShell is the way to go - way more powerful than bash or any of the other *nix shells, IMHO - since it's based on piping objects from cmdlet to cmdlet, rather than just text which needs to be parsed over and over again... – marc_s May 27 '09 at 9:02
+1 for examples of some equivalent commands – banzaimonkey Dec 22 '10 at 23:34
1  
Sounds great if you already know .Net, not so much if you don't – Don Jul 26 '11 at 13:54
@Don: There would be a fairly large benefit to knowing the .NET libraries, but for the most part, the hard part is learning powershell's syntax. There's tab-completion for most things, and if you don't know what functions an object supports, pipe the command line through get-member (or gm), and you'll get a list of properties and methods on the objects at the end of the pipe. – Eclipse Aug 19 '11 at 14:22
1  
If you're stuck on Windows, PowerShell is the way to go, specially with the Unixy aliases. – Andres Riofrio Mar 30 at 21:09
feedback

Msys should also be mentioned. It is a rather good set of all the important GNU tools for Windows, including bash. It also makes it possible to run the tools from the normal windows CMD-prompt. So if you use CMD from time to time you still have the usual tools like ls and grep available. It also feels more lightweight than Cygwin, at least to me.

link|improve this answer
2  
You can also do this with Cygwin - just add C:\cygwin\bin to your path environment variable (or replace the "C:\cygwin" part with the path to your local cygwin installation). – Steg May 13 '10 at 8:51
feedback

GnuWin32

You can download all the packages, or just the commands you want. Add the directory you put them in to your path. Then the usual unix commands work (ls, grep, tail, etc.) work at the DOS prompt.

link|improve this answer
2  
Bash isn't included in this package. – MattFu Oct 5 '10 at 0:42
3  
@MattFu Thanks for the comment. Bash isn't supposed to be included. GnuWin32 adds functionality to the DOS shell to make it act like bash. Just another alternative to cygwin. – UncleO Oct 5 '10 at 6:24
feedback

There is also SFU (services for UNIX), or nowadays SUA (subsystem for UNIX based applications), which is (at least the latter) a POSIX compatiblity layer including a UNIX VFS and many common UNIX tools, like, to answer your question, a Korn shell.

link|improve this answer
You can even install Gentoo on Windows using SFU/SUA: mirrors.kernel.org/gentoo/experimental/prefix/x86-interix/iso – ephemient Jun 3 '09 at 16:15
Not what I usually want to do, but nice :) – TheBonsai Jun 4 '09 at 7:16
1  
I used to use UWIN before SFU or Cygwin matured; both UWIN and SFU/SUA have the "problem" of feeling like a snapshot of UNIX from 20 years ago, which is quite disconcerting once you've gotten used to GNU/Linux. Gentoo/Interix kinda solves this... though Cygwin is the easiest solution :) – ephemient Jun 5 '09 at 4:37
feedback

Unxutils is a set of standalone unix utilities that run on windows. You could take a look at it and see if it offers the things you need. This is nice because you don't need a full install of cygwin.

link|improve this answer
3  
I have been using UnxUtils for about the past 4-5 years, and I nearly never miss cygwin. Occasionally the package installer would be handy to use in lieu of upgrading packages like perl, python, cvs etc, by hand. Cygwin can hit a Gb quickly, where unXUtils contains 120 common utilities and weighs in at around 7Mb. You should also have a look at Swiss File Knife – gbegley Mar 25 '11 at 19:33
feedback

Perhaps you could try Windows PowerShell. This solution is inspired by bash and has many advantages over it, including .NET support and the sole fact this is a native Microsoft solution.

All basic commands are present and you can easily configure your own aliases.

http://www.microsoft.com/windowsserver2003/technologies/management/powershell/default.mspx

link|improve this answer
feedback

As mentioned by almost everyone Cygwin is pretty good, although it's a little on the "heavy" side. If you're looking for something lighter, check out MinGW (and MSYS).

link|improve this answer
feedback

I installed Git for Windows via msysgit and it comes with 'Git Bash' which is a bash shell for Windows. Works fine.

Unfortunately the interface is crap! I've got used to having a pretty nice shell on OS X at work where simple things like Cmd+C and Cmd+V to copy and paste, selecting text with the mouse etc just work.

Would love to know if there's any better shells available, without installed over a gigabyte of Cygwin...

Wanted to try MS PowerShell (as I don't strictly need bash compatibility) but it won't install on Win 7

-- update --

This one has a nice interface, albeit it's not bash at all, just a better Windows shell: http://sourceforge.net/projects/console

Annoying not having the familiar unix tools, and having to remember to use backslashes in paths!

-- update again --

This is an extra recommendation for Console above, I found you can tell it to use the Git shell so you get the best of both worlds... copy and paste commands (non-standard Shift+Insert/Ctrl+Insert but oh well) select with the mouse (by holding down Shift) and tabbed windows etc, but with a bash shell.

Just go to Edit > Settings > Console > Shell and put in the path to Git, eg

"C:\Program Files (x86)\Git\bin\sh.exe" --login -i
link|improve this answer
1  
I believe the git bash shell is just a re-package of (a subset of?) the MSYS environment, so if you don't need git specifically just use the latter. – HansBKK Feb 9 at 18:22
PowerShell doesn't need to be installed on Windows 7 -- it's already there! Press Win-R, type "powershell" and press Enter. – Andres Riofrio Mar 30 at 21:11
@andres thanks for the tip. since I answered this I've been exclusively using Console terminal with the msys bash shell, I really value having similar environment to the linux server my website is one – Anentropic Mar 31 at 0:59
feedback

Win-bash

link|improve this answer
feedback

http://www.virtualbox.org/ and a linux iso, http://www.ubuntu.com/ for example.

It's a fun DEV tool when you're testing programs and what not across multiple platforms. You can run anything in VBox. It's also a cool learning tool when you don't want to commit to installing another operating system, but want to see what is available.

Again, great learning tool, and you can just shut the virtual machine down when you're done.

link|improve this answer
feedback

Use Cygwin - it comes with most of what you need.

link|improve this answer
feedback

Powershell is included in Win7

I tried using Cygwin on Windows 2008 R2 64bit and it keeps crashing

link|improve this answer
feedback

Take a look at Road Bash.

http://www.qhull.org/bash/doc/road-bash.html

I have been using Cygwin until i came across this one.

Things i like better on RoadBash are:

  1. very light
  2. vi is included
  3. it seems to cooperate better with some apps run from the the command line (i.e. mysql -u root -p will freeze at the prompt in cygwin, but works just fine in roadbash).
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.