I'd just like to learn how to do it. I have friends who are programmers for a living and they know how to do all of that stuff where as I've been using IDE's my entire programming life.
If I use linux for example, I don't even know how to compile a program from source.
I'd like to learn it more out of curiosity than anything.
This is the primary reason I advocate text editor + command line for beginners. I feel like it's a lot easier to go from a separate editor, a compiler, a debugger and console I/O at the command line to an IDE that pulls those pieces together (although sometimes heavily obscuring the console I/O) than try to go from an editor window and a "compile/run" button to performing the steps manually.
I know you "always have an IDE" these days, but at least in my job there are times that i have a shell on a remote system and need to get something done. I know how to setup X-forwarding, and i could probably get some sort of graphical environment going, an IDE installed, etc. but it's a lot easier to fire up vim and get the job done and go back to bed.
I guess it makes me feel better to know what's going on at various steps. It helps me work through problems, etc. Certainly the same solutions and approaches are available with an IDE, but I guess I feel like sometimes they are too clever.
The only exception I make is large-scale Java projects. I'll bang out a small tool with javac and jar, but once a project gets complex I definitely prefer an IDE. I don't mean to knock Java, but it is incredibly verbose. I am a fast typist, but I definitely like having completion available when working with Java.
If one were to want to get started learning a "terminal-only" workflow I'd say:
http://www.viemu.com/a_vi_vim_graphical_cheat_sheet_tutorial.html
(Queue emacs lovers flaming)
http://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man1/gcc.1.html
If you aren't familiar with piping things around a terminal:
http://www.injunea.demon.co.uk/pages/page208.htm
Once you're spending too much time managing dependencies when compiling:
http://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man1/make.1.html
I don't believe IDE addiction is incurable. I had a mild dependency for a number of years, but once I started running OS X instead of Windows and developing primarily on Unixes the command line just clicked.
-Lee