up vote 6 down vote favorite
4
share [g+] share [fb]

when i have to use MSwindows i always open a cygwin window so would like to know whats your favourite commands when using cygwin ?

some of mine are :

tail -c anylog   //to wathc logs file continuously
locate somefile  //find file
alias longCommand ='tail -c anylog |grep --color "term1\|term2\|term3"'
cat *.txt        //print all content of every txt file in directory
mv p2p/*.mp3 myDocs/myMusic // :D self explanatory
link|improve this question

17% accept rate
feedback

13 Answers

$ sort < .bash_history | awk '{print $1}' | uniq -c | sort -r
    108 ls
     79 cd
     44 java
     38 vi
     28 wc
     28 /c/Program\           # whoops!
     23 rm
     18 jar
     17 ipconfig
     12 cut
     12 cp
      9 mv
      7 mkdir
      5 exit
      5 diff
      4 sort
      4 javac
      4 cat
      2 tracert
      1 pwd
link|improve this answer
My top three: exit, ./mplayer.exe, grep – Terhorst Sep 20 '08 at 6:52
feedback

I use it for as much as possible, including navigating my source tree. Thus I have an alias, mirroring the OS X open command:

alias open=cygstart

Eg. open . opens the current directory in explorer and open README.txt launches Notepad++.

And I have a small script so that I can use tortoiseSVN from the command line, which I find invaluable. Bringing the best of both worlds together.

#!/bin/sh
# Use TortoiseSVN from the cli
# Public Domain, Max Howell 2008

path=$2
test -z $path && path=.
test -e $path && path=`cygpath -wa $path`

svn='/cygdrive/c/progra~1/TortoiseSVN/bin/TortoiseProc.exe'

function svn
{
    "$svn" /notempfile /command:"$1" /path:"$path" &
}

case $1 in
    up | update) svn update;;
    ci | commit) svn commit;;
    log) svn log;;
    props) svn properties;;
    browse) svn repobrowser;;
    *) /usr/bin/svn $@;;
esac

Now svn ci opens up the Tortoise commit dialog, which is the best I've found on any platform. svn log opens the pretty good, but very useful Tortoise log dialog. Et cetera.

I maintain the script here: http://www.methylblue.com/blog/using-tortoisesvn-from-the-command-line/

link|improve this answer
feedback

First, install rxvt.

Then set up a shortcut for rxvt. I like tcsh, so my shortcut looks like: Target: C:\cygwin\bin\rxvt.exe -e /bin/tcsh.exe Start in: C:\cygwin\home\me

Then add windows paths to your shell: setenv PATH /usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/cygdrive/c/WINDOWS/system32:/cygdrive/c/WINDOWS:/home/shuffman/bin:/cygdrive/c/WINDOWS/system32

Now you can use cygwin in place of most windows commands; ipconfig, etc...

link|improve this answer
feedback

I find that it behaves better when I SSH into my own machine rather than use the cygwin console.

link|improve this answer
You might want to look at code.google.com/p/puttycyg or 9bis.net/kitty which have cygwin terminal in putty built in. – Douglas Leeder Sep 20 '08 at 14:49
feedback

i forgot :

cat *.avi >> big_file.avi
wget http://someurl/file
nano myfile
nmap 192.168.1.* |grep --color open
link|improve this answer
feedback

The best use of cygwin that I find is to have a bigger command line window.

I always like the graphical interface for command lines, I'll have to blame it on my previous use of the rxvt on Linux.

  1. For this I usually first install the Cygwin-X shortcuts and the startup scripts.
    • On the setup.exe program you can find it on the X11 and have the following names:
      X-start-menu-icons
      X-startup-scripts
  2. I then proceed to install rxvt or rxvt unicode.
    • You can find it, on the setup.exe program, under Shells:
      rxvt
      OR rxvt-unicode
  3. Then I modify the startxwin.bat file to auto run a rxvt term.
    • This file is located here, assuming default install: C:\cygwin\usr\X11R6\bin\startxwin.bat
      Where you find:
      %RUN% xterm -e /usr/bin/bash -l
      Just replace by
      %RUN% rxvt -sl 5000 -sr -e /usr/bin/bash -l
  4. Then I proceed to make a link to startx.bat on my Quick Launch Toolbar
  5. The before last thing I do is to create a rxvt.bat file that contains:

    @echo off
    SET DISPLAY=127.0.0.1:0.0
    SET CYGWIN_ROOT=\cygwin
    SET RUN=%CYGWIN_ROOT%\bin\run -p /usr/X11R6/bin
    SET PATH=.;%CYGWIN_ROOT%\bin;%CYGWIN_ROOT%\usr\X11R6\bin;%PATH%
    SET XAPPLRESDIR=/usr/X11R6/lib/X11/app-defaults
    SET XCMSDB=/usr/X11R6/lib/X11/Xcms.txt
    SET XKEYSYMDB=/usr/X11R6/lib/X11/XKeysymDB
    SET XNLSPATH=/usr/X11R6/lib/X11/locale

    %RUN% rxvt -sl 5000 -sr -e /usr/bin/bash -l

    this allows me to have an easy way to call more command line instances.

  6. And the last thing is to do another link of the rxvt.bat file into the Quick Launch Toolbar.

And then I just enjoy all my favourite commands, mainly the BIND chain, even if I have to compile then from source!!

link|improve this answer
feedback

See this existing stackoverflow question.

link|improve this answer
feedback

They're pretty much the same old timeless Unix shell-scripting hacks.

link|improve this answer
feedback

Try this trick for fun:

Open up two consoles. Use tty in one. It will give, for example, /dev/tty0.

In the other console do:

echo "Message" >> /dev/tty0
link|improve this answer
feedback

The best use for cygwin is that I don't have t put up with windows at work (except for email and a few company-specific applications)

link|improve this answer
feedback

Best way to run cygwin is in wine on a linux system, solely for the irony factor.

link|improve this answer
Turns out that this has actually been achieved: wiki.winehq.org/CygwinSupport – Arafangion Jan 17 at 4:37
feedback

I use cygwin's X-server for X11 forwarding over SSH. And for command line svn.

link|improve this answer
feedback

I use cygwin with the screen command to keep all my work in one command window rather then three or four windows. I also do any console c/c++ programming under cygwin with gcc, use the ssh client included, compile any unix based software I want to use such as remind, and use the version of perl included with cygwin for system administration stuff.

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.