Slashdot Mirror


Command Line Life Partner Wanted

emj writes "Craiglist offers an interesting approach to finding a life partner , summmary: "There is a sad truth to the world today. I am part of a dying breed of people known as "shell users." ... Because there are fewer and fewer of us, I must help keep our lineage alive. I am looking for someone to help me do this. I need a woman (obviously) who is willing to raise a child with me in the method of Unix."."

112 of 503 comments (clear)

  1. hmmm... by hbean · · Score: 5, Funny

    grep -i 'single white female' /usr2/home/women/*

    --
    "Give someone a program, frustrate them for a day... Teach someone to program, frustrate them for a lifetime."
    1. Re:hmmm... by EvilMonkeySlayer · · Score: 5, Funny

      grep: /usr2/home/women/*: No such file or directory

      *Sniff*

    2. Re:hmmm... by oliderid · · Score: 5, Funny

      grep -i 'white female' /home/me/Desktop/women/*

      1256 pictures found.

    3. Re:hmmm... by Anonymous Coward · · Score: 5, Funny

      grep -i 'asian schoolgirl' /home/me/Desktop/women/*

      *error insufficient memory

    4. Re:hmmm... by ohtani · · Score: 5, Funny

      ohtani@darkstar:~$ man woman
      Segmentation fault (core dumped)

      --
      Pancakes. Oh I blew it.
    5. Re:hmmm... by somersault · · Score: 5, Funny

      basement# grep -i 'single white female' /usr2/home/women/*

      Your mom

      --
      which is totally what she said
    6. Re:hmmm... by Rob+Bos · · Score: 2

      That probably won't work - there's a limit to the number of files you can expand on the commandline with bash.

      You probably want to do something like 'find -type f /home/me/Desktop/women | while read i;do grep "white female" "$i";done'.

    7. Re:hmmm... by malkavian · · Score: 4, Funny

      root@SoupDragon:~/# man woman
      No manual entry for woman

      Which makes me wonder if the shell requirement is solely so he can make a Cron job and have automated entry?

    8. Re:hmmm... by rbowles · · Score: 5, Informative

      xargs does the trick nicely here (and most versions of find expect arguments after the pathname).

      # find ${SOMEPATH} -type f | xargs grep -i "${PATTERN}"

      --
      /* MAGIC THEATRE
      ENTRANCE NOT FOR EVERYBODY
      MADMEN ONLY */
    9. Re:hmmm... by ResidntGeek · · Score: 5, Funny

      Just a heads-up, it's generally considered improper to seek a wife from one's own home.

      Try /pub.

      --
      ResidntGeek
    10. Re:hmmm... by Malevolyn · · Score: 2, Funny

      I know a girl named ALICE who's up for anything (as long as you've got the time to build some good training files). ;) And bonus, if you're freaky you can invite her cousin MegaHAL for a little two on one.

      --
      Your ad here.
    11. Re:hmmm... by cruff · · Score: 5, Funny

      I found this to be more correct:

      % man woman
      No manual entry for woman

    12. Re:hmmm... by operagost · · Score: 5, Funny

      Ok... this is exactly why you guys only have pictures of women.

      --

      Gamingmuseum.com: Give your 3D accelerator a rest.
    13. Re:hmmm... by antifoidulus · · Score: 4, Funny

      Well, essentially he is looking for a device..... something he can input sperm into and get a baby as output, so probably /dev would be the best place to look. Though I don't know how many women have usb 2.0 compatible vaginas.

    14. Re:hmmm... by Cerberus7 · · Score: 5, Funny

      You ran that as root? What are you, crazy? You might as well hand over your car keys and bank account numbers to her! Oh, wait, that happens anyway...

      --
      I don't know about you, but my servers run on the power of cotton candy and happy thoughts. -Anonymous Coward
    15. Re:hmmm... by SQLGuru · · Score: 2, Funny

      I think they prefer the mechanical entry.......bzzzzzzzz

      Layne

    16. Re:hmmm... by rbowles · · Score: 5, Funny

      Pictures?!?!?
      I find a textual representation to be much more accurate and efficient. Certainly much easier to write an efficient parser for text than for a picture.

      --
      /* MAGIC THEATRE
      ENTRANCE NOT FOR EVERYBODY
      MADMEN ONLY */
    17. Re:hmmm... by Jumphard · · Score: 2, Funny

      "grep -i 'single white female' /usr2/home/women/*"
      So what are you saying, women can only be in the home? You can't be a working woman? Women shouldn't be paid? Women are inferior?
      You should be ashamed.

    18. Re:hmmm... by simcop2387 · · Score: 3, Interesting

      its already been done, just take the video and play back with aalib or libcaca in mplayer!

    19. Re:hmmm... by hbean · · Score: 2, Funny

      Well, I learned after my college years that /pub was not a great place to look for women.

      --
      "Give someone a program, frustrate them for a day... Teach someone to program, frustrate them for a lifetime."
    20. Re:hmmm... by zippthorne · · Score: 2, Funny

      Ugh, does no one read the man pages any more? Do people think they're sexist or something?

      grep -r -i "${PATTERN}" ${SOMEPATH}

      --
      Can you be Even More Awesome?!
    21. Re:hmmm... by Sillygates · · Score: 4, Funny

      grep -i 'asian schoolgirl' /home/me/Desktop/women/* grep: argument list too long
      --
      I fear the Y2038 bug
    22. Re:hmmm... by glittalogik · · Score: 2, Funny

      I think it's ok as long as the MTBF is high enough.

    23. Re:hmmm... by linguizic · · Score: 3, Funny

      yoyhed@hell:~/# ./jackoff > /dev/sock
      There, fixed that for you.
      --
      Does this sig remind you of Agatha Christie?
    24. Re:hmmm... by yoyhed · · Score: 2, Funny

      Hahaha! Very clever, but no one likes using a crusty /dev/sock.

      --
      WHO NEEDS SHIFT WHEN YOU HAVE CAPSLOCK/ DAMN1
    25. Re:hmmm... by spatialguy · · Score: 5, Funny

      % make love
      no target to make love

    26. Re:hmmm... by kbahey · · Score: 2, Informative

      How did this get a +5?

      You can do:

      $ find ${SOMEPATH} -type f -exec grep -i "${PATTERN}" {} \;

      Or:

      $ grep -r -i "${PATTERN}"

    27. Re:hmmm... by QuoteMstr · · Score: 2, Informative

      Actually, modern versions of find (including GNU and OS X find) support this syntax. (Yes, it's standard.)


      find "$PATH" -type f /bin/some-program {} +


      Which works like the old print0/xargs -0 combination.

      Also, ${FOO} is the same as $FOO. If you want to not cause whitespace-separated chunks to expand to multiple words, you must put the variable reference in double quotes.

  2. Unichs? by Wordsmith · · Score: 4, Funny

    Don't be silly. Unichs can't have children.

    1. Re:Unichs? by u-bend · · Score: 5, Funny

      They're asexual. They respawn when killed.

      --
      u-bend
    2. Re:Unichs? by dreamchaser · · Score: 3, Funny

      That sound you just heard was the joke (a play on the words 'unix' and 'eunuchs') going WHOOOOOSH right over your Anonymously Cowardly head.

    3. Re:Unichs? by Anonymous Coward · · Score: 2, Funny

      Hear that sound? That's the spelling Nazi sarcasm going over *your* head.
      wooooOOOOssshhSSSHHH
      Hear that sound? It's the sound of Godwin's law getting closer and closer

    4. Re:Unichs? by Brandybuck · · Score: 2, Funny

      Eunichs is a trademark of Ball Labs®

      --
      Don't blame me, I didn't vote for either of them!
  3. One things for sure by clubhi · · Score: 5, Funny

    This kid will get all the chicks.

  4. "dying breed"? by neiko · · Score: 5, Insightful

    I'm not sure I agree that shell users are a dying breed. Being a young developer (25yo) I and most, if not all, my co-workers are using a shell to develop and run unit debug/trace in. I think the amount of computer users in general has gone up so merely the ratio of shell/gui users has gone down.

    1. Re:"dying breed"? by Mongoose+Disciple · · Score: 2, Interesting

      Eh, it probably depends on the language/environment. People who do a lot of *NIX work probably shell a lot more than people who work more on Macs or Windows machines. (I know, the Mac gives you a bad ass command prompt, but I only know one Mac owner out of many that uses it at all.) I've worked at a pretty wide variety of companies (I'm a consultant, mostly .NET or Java work lately) and I'd say the developers that I've met that used the shell are vastly in the minority. Not to say there weren't occasional tasks that most of those developers would use a shell for when necessary or that they didn't understand the shell, but for things that could reasonably be done with either the GUI or the shell, they used the GUI.

      I haven't actually seen someone debug or trace from a shell in the workplace ever, though I've certainly done it myself back in college or on personal projects since.

    2. Re:"dying breed"? by MightyMartian · · Score: 3, Insightful

      The vast majority of my programming over the years has been script and utility programming, so it's off to the CLI for that. Having been raised on old TRS-80s and Commodores, graduating into MS-DOS and Xenix, I'm afraid I find the GUI a bit of a pain. You use it because it's there, but if I want to do any non-trivial copying or the like, it's off to the command line.

      I can't imagine using *nix without sh or bash. I still prefer CLI apps as well. I use SLRN for my newsreader, because I find it faster, more streamlined and sensible.

      I don't think I'm right or wrong. It's the way I do it. I've seen guys that can use the GUI like a finely-tuned instrument, so all the power to them.

      --
      The world's burning. Moped Jesus spotted on I50. Details at 11.
    3. Re:"dying breed"? by smittyoneeach · · Score: 2, Insightful

      After all, who wants to waste precious clock cycles swapping out to refresh some widget?
      Nah, CPU/RAM/Video card improvements render this point moot.
      The real question is: Who wants to deal with vast amounts of UI library, tons of little form files, and intricate event models for managing all of the user state?
      It's the 20% of the app taking 80% of the time, in addition to making all of that sweet logic you wrote kinda hard to use on multiple platforms.
      UI stuff, while certainly important, can be some of the least fun parts of a project to work on. What's worse? Printing?
      --
      Get thee glass eyes, and, like a scurvy politician, seem to see things thou dost not.--King Lear
    4. Re:"dying breed"? by rk · · Score: 4, Insightful

      And who-ever it was who thought tying computationally costly operations to fancy clock cycle consuming progress bars was a good idea should be shot.

      Probably someone who was tired of the computational expense of having something run halfway through umpteen times, only to have their users kill the program, because it was "hung". If you've got a progress bar that's consuming enough CPU that it is having an significantly adverse impact on an application's performance, it's either coded horribly wrong, or you're at the very limit of your hardware's maximum capability, and perhaps you should really consider upgrading.

      FWIW, I'm a dyed-in-the-wool shell scripting, C, Python and Perl programming command-line Unix elitist snob who uses X11 (or OS X for that matter) as little more than a fancy terminal manager, and have been for almost 20 years. But that doesn't mean I don't understand basic human factors.

      I can't help you with Vista, I'm apparently lucky to never have used it. XP is more than adequate for my current Windows needs.

    5. Re:"dying breed"? by Zach978 · · Score: 3, Interesting

      I think that to some extent we are a dying breed. I'm only 23, and I'm still old enough that when I first started using a computer all we had was shell (dos, apple II). So I was forced to use CLI and am more comfortable using it as a result. My little brothers have never seen a shell...for them problems on a computer are fixed with lots and lots of clicking in the "control panel".

      I'm not saying that CLI is going to fade away, because IMO it still has lots of advantages, just saying that only unix geeks will think to use it.

      --

      "I told you a million times not to exaggerate!"
    6. Re:"dying breed"? by theCoder · · Score: 2

      There are still some of us out there who use the command line and traces to debug. Partly because it's too much of a pain to compile everything debug and partly because I've never become proficient enough with dbx or gdb to make them my first choice.

      Personally, I see the command line as my way to talk to the computer. Without it, I'm just pointing and grunting like a caveman. And if that's all you want, I guess that's OK, but I prefer the eloquence and expressiveness of the command line.

      --
      "Save the whales, feed the hungry, free the mallocs" -- author unknown
    7. Re:"dying breed"? by geminidomino · · Score: 4, Insightful

      Amen.

      GUIs are for two things and two things only:

      1. A container for multiple shell windows (slrn, irssi, mutt, etc..)
      2. Using firefox to look at pictures of pretty women-type people.

    8. Re:"dying breed"? by Vellmont · · Score: 4, Insightful


      I'm not saying that CLI is going to fade away, because IMO it still has lots of advantages, just saying that only unix geeks will think to use it.

      I'd say that's because the CLI tools on windows aren't very good.

      If I want to copy a file from one computer to another, it's a million times easier to use scp than it is to open up a GUI tool, drag the files around, etc. Same thing for changing file ownership of an entire directory.

      Creating a user on the other hand is a lot easier using a GUI. I don't want to have to remember obscure, seldom used commands to assign the right groups, etc.

      The mistake people seem to make is that it's an either/or choice. Shell or GUI? No, shell AND GUI.

      --
      AccountKiller
    9. Re:"dying breed"? by soliptic · · Score: 5, Insightful

      Er, what?

      Maybe YOU don't do any graphic design, video editing, audio production, etc; maybe all YOUR computer use is text-based stuff; I don't see how you can extrapolate that to a blanket statement of fact for the entire world.

      Unless you know any graphic designers who use command line photoshop? > photoshop -select 50,101,40,50 -addtextlayer font:helvetica size:17pt antialiasing:crisp text:"Hello" -addlayerstyle styletype:bevel Much better. Right?

      Or how about, say, ATC systems? I'm sure it's really easy to spot, at a glance, two planes getting too close for comfort when you're given an 80x25 screen full of numbers, as compared to a graphical representation.

      Er... no... doesn't really work, does it. So your +4 insightful is... well... not.

    10. Re:"dying breed"? by TheRaven64 · · Score: 2, Insightful

      Every professional programmer I've met who uses command line tools over GUI tools does it because they are working in an environment that lacks quality GUI tools Another factor is that you can use the command line anywhere. I used to use a couple of GUI debuggers a lot, but when I was debugging my code on a remote machine via ssh (which I do fairly often) I was completely lost. Now I use gdb on both machines and there is no sharp loss in functionality when I switch to the command line. I can now do everything I used to do with the GUI debuggers (and a few things I didn't) in both local and remote environments. Sure, I could have run a GUI debugger over remote X. I actually tried that a couple of times, but it was so slow I eventually gave up and learned gdb. When I'm in a graphical IDE I often use the graphical debugger because it's easier to access, but even then I find myself dropping to the command line when I can't make the GUI tell me what I want it to.
      --
      I am TheRaven on Soylent News
    11. Re:"dying breed"? by putaro · · Score: 2, Funny

      Hand me my command prompt. It's the one over there that says "Bad Motherfucker" on it.

      bad_motherfucker>

  5. How they make children by ORBAT · · Score: 5, Funny

    who && gawk && uname && talk && date && wine && touch && unzip && strip && touch && finger && mount && fsck && more && yes; yes; more; yes; umount && make clean && sleep

    1. Re:How they make children by Anonymous Coward · · Score: 5, Funny

      9 months later, fork() and spawn()

    2. Re:How they make children by $RANDOMLUSER · · Score: 5, Funny

      You forgot "head".

      --
      No folly is more costly than the folly of intolerant idealism. - Winston Churchill
    3. Re:How they make children by Mr.+Underbridge · · Score: 5, Funny

      who && gawk && uname && talk && date && wine && touch && unzip && strip && touch && finger && mount && fsck && more && yes; yes; more; yes; umount && make clean && sleep

      See, that's just laziness. What about parallel threads, exception handling, and race conditions? ;)

    4. Re:How they make children by The+Ultimate+Fartkno · · Score: 5, Funny

      > and race conditions

      How can you post something like that on MLK day?

      (I expect at least one mod point for not forcing a really clunky "I have a d-ram" joke...)

    5. Re:How they make children by Anonymous Coward · · Score: 5, Funny

      ...and race conditions?
      They have drugs to treat premature ejaculations now I think...
    6. Re:How they make children by Anonymous Coward · · Score: 2, Funny

      Oh come on, you have to have a backup plan!!!


      That's is what her sister, Amanda, is for.
    7. Re:How they make children by ortzinator · · Score: 2, Funny

      Command failed at "talk"

    8. Re:How they make children by iabervon · · Score: 2, Funny

      "I have a dream that my four children will one day run on a system where they will not be judged by the ID of their group but by the locks that they hold."

  6. A UNIX relationship... by hitchhikerjim · · Score: 4, Funny

    Hmm... a relationship consisting of short, efficient and flexible commands that can be combined in interesting ways. Sounds pretty good to me. But I've only seen it work in the BDSM world.

  7. Hey baby... by Megane · · Score: 3, Funny

    ...wanna fork()?

    --
    #naabhaprzrag, #sverubfr-000, #agi-fcbafberq, negvpyr[pynff*=' negvpyr-ary-'] { qvfcynl: abar !vzcbegnag; }
  8. Bah! by Penguinisto · · Score: 2, Funny
    Just fork and init FFS...

    (what is this "mating" thing you speak of? It sounds as messy and inelegant as Visual Basic. Yuck).

    (come to think of it, this may explain why there are so few shell users left...)

    /P

    --
    Quo usque tandem abutere, Nimbus, patientia nostra?
  9. his kids will tame him or suffer by m0llusk · · Score: 5, Insightful

    Most people aren't command line geeks because they have no desire for that. If this person has kids and empowers them then they might become anything, but if this idea of spawning a kind of clone persists then the kids are likely to be constrained, unhappy, and ultimately failures at life.

    1. Re:his kids will tame him or suffer by Anonymous Coward · · Score: 5, Funny

      You must be a real hit at parties.

    2. Re:his kids will tame him or suffer by daviddennis · · Score: 2, Informative

      Perhaps he really does understand children as a sort of fork();? That call, as it happens, does create an identical child process!

      This is an age-old problem and is not confined to computer geeks. Many fathers who want to "pass on their own line" have had similar problems.

      Geeks tend to be more flexible than that, though - more so in practice than in theory. We're talking theory here so we can start as we want and then adopt to conditions.

      I have to say he is truly looking at a tiny number of females likely to understand his ad and want to respond, though. And that is not meant as an insult to the wonderful geek females around - they are just 10% of the geek population!

      D

    3. Re:his kids will tame him or suffer by lysse · · Score: 3, Funny

      I think it's more that he tends to hit people at parties.

    4. Re:his kids will tame him or suffer by Jugalator · · Score: 2, Insightful

      Hm, well I dunno... I read that thing as being written mostly tongue in cheek although he did seem to be looking for a girl on the geekier side who was interested in a dedicated relationship. But the rest seeming more like originality to stand out of the crowd. I don't think we should read too much into it, not that I'm a pro at analyzing these personal ads.

      --
      Beware: In C++, your friends can see your privates!
  10. No graphical interface ... by StripedCow · · Score: 5, Funny

    Obviously, her looks are completely unimportant.

    --
    If Pandora's box is destined to be opened, *I* want to be the one to open it.
    1. Re:No graphical interface ... by jovius · · Score: 2, Funny

      at least it's obvious she won't need to clean windows.

    2. Re:No graphical interface ... by niceone · · Score: 5, Funny

      Obviously, her looks are completely unimportant.

      Yeah, it's character based.

  11. sex in the command line by raffe · · Score: 2, Funny

    unzip, strip, touch, finger, grep, mount, fsck, more, yes,fsck,fsck,fsck,umount, sleep.

  12. He almost had me going... by mr_gerbik · · Score: 5, Funny

    Until I read this: I've been known to actually turn down offers of "two chicks at the same time."

    Seriously though, I'd love to see the look on two girls' faces when this guy says, "Sorry ladies, I'm looking for a vi user, and you two look like you can't even use Word."

    1. Re:He almost had me going... by calebt3 · · Score: 3, Funny

      He didn't mention the cup.

  13. What a poser by $RANDOMLUSER · · Score: 5, Funny

    N.B. - on the issue of relocation. I live in a place where my income/expense ratio is proper (i.e., greater than 2:1). I'm willing to live anywhere in the world where this remains true.
    As if. A real Unix geek would use a symbolic link.
    --
    No folly is more costly than the folly of intolerant idealism. - Winston Churchill
  14. The most Ironic thing by techpawn · · Score: 2, Insightful

    They admit to being part of a "dieing breed" yet he is still looking for a mate? Darwin is spinning in his grave...

    --
    Ask not what you can do for your country. Ask what your country did to you
  15. Re:Don't live in the dark ages! by Keruo · · Score: 2, Insightful

    > A modern computing system is not one that is run from the DOS commandline

    Windows 2008 server core is not modern enough for you then? It is run from DOS(actually powershell) commandline.

    --
    There are no atheists when recovering from tape backup.
  16. reminds me of this by Mr.+Slippery · · Score: 5, Insightful

    Reminds me of this old column by Joab Jackson:

    Say you want to date a system administrator, or sysadmin for short. (And why wouldn't you? They rake in the phat bux for maintaining office computer networks.) The choice is clear: Go for someone specializing in Unix, not Windows. The Unix sysadmin may be slothful and go missing for entire weekends on a Dungeons and Dragons binge. But it's the Windows sysadmin who'll unwittingly hose you with a dangerous virus. And that's far worse.

    What, you might ask, could the operating system a person chooses to spend time with possibly reveal? Everything...Windows is designed for people who don't want to spend a lot of time fooling with their computers. It simplifies tasks, giving us pretty boxes to point and click at.

    ...

    Think about these qualities for a sec. Which would you rather have in a lover? Who would you rather have as an intimate -- someone who takes time to understand your quirks thoroughly, or someone who merely pushes your buttons whenever you malfunction? I'm not saying all Windows NT people are obedient, shallow half-wits driven only by desire for material gain. I'm just saying that if you want to fish a decent specimen from the dating pool, you might be better off starting on the Unix side.

    --
    Tom Swiss | the infamous tms | my blog
    You cannot wash away blood with blood
  17. I only see one problem... by Valar · · Score: 4, Funny

    I was quite sure that many women out there would find the ad very intriguing, until he got to the part about only using Vi. Seriously, why would you bring up your mental health conditions even before the first date?

  18. Re:Don't live in the dark ages! by msuarezalvarez · · Score: 4, Informative

    A modern computing system is not one that is run from the DOS commandline

    The DOS command line did not run a modern computing system not even when it was first released.

  19. Intelligent atheist white man seeks sweetie by nuxx · · Score: 4, Funny

    Don't forget the other UNIX-y posting where an Intelligent atheist white man seeks sweetie.

    1. Re:Intelligent atheist white man seeks sweetie by ggvaidya · · Score: 3, Interesting

      And in case you were wondering, yes, it's authentic.

  20. If he finds such a woman... by jollyreaper · · Score: 4, Funny

    He will have to propose. I wonder if he's going to go with diamond or a token ring?

    --
    Kwisatz Haderach
    Sell the spice to CHOAM
    This Mahdi took Shaddam's Throne
  21. kill() by Anonymous Coward · · Score: 2, Funny

    Is this luser aware of the fact that in Unix, it is perfectly legal for a child to kill its parent?

  22. ...and "tail" by Joce640k · · Score: 5, Funny

    very important, that one...

    --
    No sig today...
  23. Re:Obvious Fake by Jellybob · · Score: 4, Insightful

    I know you're joking, but its time to fight the "geeks can't get laid" stereotype.

    I don't know if I'm just not in the truly geeky end of the spectrum, but certainly in the area of "professional geeks" (developers, sysadmins, network admins etc.) I know very few who are single, and most of the ones who are don't have much trouble finding women, they just can't really be bothered with the dating game.

    There was once a time when geeks were kinda freaky people you'd steer clear of, but that seems to have changed as more people get computers and an Internet connection, and start to find out that we were right about it being useful all along. Sure, it's still almost impossible to explain the job of a software developer to the average computer user, but then I can't comprehend what a professional accountant must do all day.

  24. ONE child? by Jesus_666 · · Score: 5, Funny

    He wants ONE child? Okay, so either he doesn't want his family to go anywhere or his grasp of the Unix way is very light. Of course he needs MANY children, each good at one and only one thing:

    One child can read and write.
    One child can do math.
    One child knows how to operate a car.
    And so on.

    Then, in order to do anything useful he pipes together the children. That's the proper Unix way of founding a family.

    --
    USE HOT GRITS WITH STATUE OF NATALIE PORTMAN (NAKED AND PETRIFIED)
  25. How this could end up... by E-Lad · · Score: 5, Funny

    [daleg@home]~$ ./significant-other
    Reading configuration from ~/.sorc...
    Welcome to GNU Significant Other! It's Monday, January 21, 2008:

       -- It is trash night.
       -- It is recycling night.
       -- Fault in dishwasher water supply was detected on 1/19/2008. Please address by 1/23/2008
       -- "Poker Night" appointment in calendar observed. This conflicts with "Movie with kids"
       -- Snow is predicted tomorrow during the evening. Please ready sho
    ^Z
    [1]+  Stopped       ./significant-other
    [daleg@home]~$

    1. Re:How this could end up... by Alioth · · Score: 5, Funny

      [reiser@home]~$ kill -9 %1
      [1]+ Killed ./significant-other
      [reiser@home]~$ _

    2. Re:How this could end up... by turtledawn · · Score: 2, Insightful

      Tasteless. :)

      --
      Uh, "if it looks roughly mouse-shaped according to my infra-red sensitive pit, eat it"? --Chris Burke 09-08-10
    3. Re:How this could end up... by geminidomino · · Score: 2

      But funny. :)

  26. I can just hear it now! by techpawn · · Score: 5, Funny

    Because there are fewer and fewer of us, I must help keep our lineage alive. I am looking for someone to help me do this. I need a woman (obviously) who is willing to raise a child with me in the method of Unix."."
    Mom: There's something billy wants to say to you dear...
    Dad: What is it son?
    Son: Well, ever since I was young I knew I was different... Not like the other boy you wanted me to play with and...
    Dad: Billy? Are you telling us you're gay?
    Son: No! Not that dad...
    Dad: Well son what is it?
    Son: I've been dual booting XP for weeks now! I want to use a GUI!
    Dad: WHAT?!! I have no son!
    --
    Ask not what you can do for your country. Ask what your country did to you
    1. Re:I can just hear it now! by xtracto · · Score: 3, Interesting

      Yes training a child a birth to use a command line is no promise they will grow up using it... Especially growing up and realizing the GUI have some major advantages over command lines for Many uses....

      The problem with GUIs is that they are not practical, at least not the ones that are created. I just have had to calculate about 500 Shapiro-Wilk statistics and p-values using R (statistical analysis package), I use Rkward GUI because it make things a whole lot easier, however, it would be plainly stupid to try to calculate all those values (from series with about 1000 samples) by importing, and selecting the statistics via a menu, it would have taken hours.

      Instead, a simple Bash script using awk, sed, grep and a custom prgoram to run R scripts allowed me to make it automatically *and* to format the results in a way I liked.

      GUIs are *easy* to use, but they are very impractical. It would be a nice argument to prove if all of them are like that or if it is only that GUIs are usually made that way (i.e., the irfanView batch converting is really good! and easy compared to some linux command line equivalents... and there is no Linux GUI equivalent of that).

      --
      Ubuntu is an African word meaning 'I can't configure Debian'
  27. Re: Good at only one thing by Dareth · · Score: 3, Funny

    reading and writing is definitely more than one thing.

    You would need a whole team of children to operate a car, and even then you should avoid "race conditions"!

    --

    I only look human.
    My mother is a halfling and my dad is an ogre, so that makes me an Ogreling
  28. Sid, Is that you? by Technician · · Score: 2, Funny
    --
    The truth shall set you free!
  29. In The Beginning Was The Command Line by ahodgkinson · · Score: 2, Interesting

    http://www.spack.org/wiki/InTheBeginningWasTheCommandLine
    And somebody help me find the essay about the command line vs. GUI environments, where the author rants about how inefficient GUIs are for development work. It may have been written by Larry Wall or somebody like him.

    --
    ---- It won't be as bad as you fear or as good as you hope, but it will take twice as long as you plan.
  30. Vista has a great command prompt by LM741N · · Score: 3, Interesting

    Shift-Right click will bring up a shell anywhere, even on the desktop. I've been using it to install the Enthought Tool System (ETS) and it works great. I know there used to be a Powertoy that did this but I don't think it was as powerful.

    I also use the prompt for burning bootable DVD's. I download Server Tools and use the dvdburn.exe utility. Shells are on their way back.

    1. Re:Vista has a great command prompt by garnetlion · · Score: 4, Funny

      I feel so, so dirty envying a Vista feature. I'm sure I could configure Gnome to do the same, but I don't feel good about myself right now.

  31. Feminist Unix command by InterGuru · · Score: 4, Funny

    man bash

  32. Command Line Users: The new Amish? by dreamchaser · · Score: 4, Funny

    I can see it now...colonies of geeks will spring up all over that are only allowed to marry each other and can't use any computer technology developed after 1986.

  33. Two Girls... by Edward+Teach · · Score: 4, Funny

    Ok, so the only reason he turned down two girls is because they only had one cup between them...

    --

    Setting his threshold to 5, Sparky eliminated most of the trolls on /.

  34. Not the stupidest way to find a spouse by Qbertino · · Score: 3, Insightful

    Two people accustomed to often using the Unix CLI for their work/passion are likely to have a lot in common, as using the CLI a) really isn't that common and b) requires a measurable amount of intelligence and mental flexibility combined with precision and foresight.
    A specialty like unix cli usage really isn't the worst measurement for finding a partner for life. It definitely holds more water that looks or brand of car.

    --
    We suffer more in our imagination than in reality. - Seneca
  35. Re:Obvious Fake by Ilan+Volow · · Score: 4, Funny

    A real sysadmin would simply pipe one chick into the other.

    --
    Ergonomica Auctorita Illico!
  36. When I had kids, I really tried getting the wife by way2trivial · · Score: 3, Interesting

    to agree to allow me to teach them binary math first.. I wanted to teach them how to count to 1023 on their fingers (4, 128, and 132 are a scream)
    I gotta lotta hell no.. but imagine it-- if your kids intuitively knew binary-- or hex-- imagine the abilitys for a future programmer..

    --
    every day http://en.wikipedia.org/wiki/Special:Random
  37. Re:Obvious Fake by techpawn · · Score: 2, Funny

    Then admit you're just in it for the sex and suck it up little soldier!

    --
    Ask not what you can do for your country. Ask what your country did to you
  38. Re:Could be hard to procreate using the Unix cmdli by mindwanderer · · Score: 2, Funny

    %make love
    Make: Don't know how to make love. Stop.

    % sleep with me
    bad character

    % man: why did you get a divorce?
    man:: Too many arguments.

    From gnu.org.

    --
    :wq
  39. SUDO by Anonymous Coward · · Score: 2, Funny

    **Copied from xkcd.com**

    "Make me a sandwich."
    "What? Make your own sandwich."
    "Sudo Make me a sandwich."
    "Ok"

  40. Re:hmmm... Doesn't matter to them... by davidsyes · · Score: 2, Funny

    They are still living in a shell. (wink)

    --
    Previously: "Linux... Toward the Sunrise..." Now: "Linux... Toward the-- No, now, part of Every Sunrise"
  41. He had me at vi... by t-twisted · · Score: 2, Funny

    He had me at vi.

  42. Correction on the find. by rockhome · · Score: 2, Funny

    # find ${SOMEPATH} -type f -exec grep -i "${PATTERN}" {} \;

  43. Something they won't say... by EmbeddedJanitor · · Score: 2, Funny

    "When we first met we just clicked."

    --
    Engineering is the art of compromise.
  44. Re:MOD PARENT DOWN by Nimey · · Score: 2, Funny

    Hans, settle down.

    --
    Hail Eris, full of mischief...

    E pluribus sanguinem
  45. Not again by Cheesey · · Score: 2, Informative

    Don't fuck a mounted filesystem, or you will fsck everything up! For fsck's sake, call umount before fucking.

    --
    >north
    You're an immobile computer, remember?
  46. Linux sex by gringer · · Score: 4, Funny

    I need a woman (obviously) who is willing to raise a child with me in the method of Unix. Here's one way to do it on Linux:

    gawk; chat; look; nice; date; wine; grep; touch; play; unzip; strip; touch; expand; screen; finger; screen; latex; tangle; mount; fsck; more; yes; yes; yes; yes; screen; yes; yes; yes; more; yes; yes; umount; sleep
    --
    Ask me about repetitive DNA
  47. Re:Geek Dating Service ... Requirements? by mattwarden · · Score: 3, Funny

    Please add the following requirements:

    * Women

    This will be the toughest feature to implement.

  48. this is... by sentientbrendan · · Score: 2, Funny

    >PS - yes, this is for real.

    I'm sorry, but this is the stupidest thing I have ever seen. Wanting more people to use the command line is not a suitable justification for bringing a new human being into the world. It certainly is not the basis for a healthy relationship.

    It's true that all sorts of people who aren't qualified to reproduce do so anyway. Just be aware that you are in that group.

    Also, no, just knowing what KSH is doesn't guarantee you have prime genetic material.

  49. +6 Funny by __aawkdb2598 · · Score: 2

    I've given up moderation in this discussion, solely to say that there should be a +6 Funny reserved for posts like this. :D