Topic awaiting preservation: UNIX-like CLIs for Windows 2000 (Page 1 of 1) |
|
---|---|
Paranoid (IV) Inmate From: Milwaukee |
posted 04-01-2003 18:43
I'm looking for something bash-like for Windows 2000, that'll have the same freedom and power as cmd.exe. I guess I want sort of a hybrid -- it would have a DOS-like command prompt and navigation, but would use / instead of \, would have a real command history when I hit up or down arrows, would support powerful piping and whatnot like UNIX, and would have a bunch of UNIXy workalikes, ideally straight ports of things like grep, awk, and so forth. |
Paranoid (IV) Mad Scientist with Finglongers From: Germany |
posted 04-01-2003 19:40
well, the cygwin enviroment just simulatios a unix on a windows machine... you'll still need to find a shell to your liking and probably compile it with cygwin... |
Paranoid (IV) Inmate From: Milwaukee |
posted 04-01-2003 20:33
All I really want is command-line text processing, specifically regex-based find and replace, since Homesite's regex find and replace just doesn't seem to work for me. Right now, I'm putting files into the shared directory of my Linux box, then telnetting to the box to perform operations on the files. Sort of a roundabout way of doing it. (Gives me techie cred, though.) |
Paranoid (IV) Inmate From: New Jersey, USA |
posted 04-02-2003 00:12
I don't know if this helps, but it's what I came across while looking for an answer for you. quote:
|
Paranoid (IV) Mad Scientist with Finglongers From: Germany |
posted 04-02-2003 07:31
Python can do all that regexps stuff... you'd have to write a couple of scripts to have quick acess to the directories though, and its string support will be better than the shell's... you can enclose strings in ', " or even """ - choosing the right one should fix most of your escaping worries. |
Maniac (V) Mad Scientist From: Rochester, New York, USA |
posted 04-02-2003 15:28
http://home.wanadoo.nl/fvu/Projects/Bash/Web/bash.htm#h-1 |
Paranoid (IV) Inmate From: Milwaukee |
posted 04-02-2003 17:59
Well I'll be a monkey's uncle... Butcher, using double quotes worked. I could have sworn I tried it before... (shrug). Anyway, now I can write up some regex-based text-cleaning shell scripts. Hurrah for me! |