vote up 10 vote down star
5

In this xkcd comic: Real Programmers

they mention that real programmers use cat. Well, I was asking myself: how could you program using the cat command?

flag

75% accept rate
17  
wait, you have no problem with using a magnetized needle then? – Paul Dixon May 28 at 15:25
4  
Butterfly wings are a bitch to clean from a keyboard. Let me tell ya. – Aiden Bell May 28 at 15:29
Also, these answers are brutal. The effort taken to explain a joke in the geekiest way possible. +1 – Aiden Bell May 28 at 15:36
We don't hear of cat anymore since dog showed up! <G> – Loren Pechtel Jun 27 at 18:40
6  
True story. I tested a beta of a text editor once (Amiga TurboText). The deal was I'd get commercial copy if I found any bugs. The cat sat on the keyboard and typed spaces until the editor crashed. The programmer (Martin Taillefer, who also coded a Modula-2 compiler) said, "wow, how did you find that one?" – Nosredna Jun 27 at 18:44
show 2 more comments

7 Answers

vote up 43 vote down check
$ cat > hello.c
#include <stdio.h>

main(void) {
    printf("Hello, world.\n");
}
^D
$ gcc hello.c
$ ./a.out
Hello, world.
link|flag
24  
... because Real Programmers get it right first time. – marijne May 28 at 15:31
5  
I tend to use cat > to do the first pass at small test programs, because the standard Solaris vi is evil. The temptation with vi is to correct you mistakes, which is a mistakes because the cursor keys will get interpreted as escape sequences and create a mess. – Tom Hawtin - tackline May 29 at 0:28
23  
Surely a REAL programmer uses "cat > a.out" – mgb Jun 22 at 13:59
1  
@Tom Hawtin: Obviously you need to play more Rogue, to ingrain the hjkl movement keys into your nervous system. – chaos Jun 24 at 14:42
1  
@chaos: This is very true. NetHack + enabling vi(m) bindings in every app that I can means that hjkl is completely ingrained. – Bernard Jul 19 at 2:21
show 2 more comments
vote up 4 vote down

I think you might have missed the joke. The point is that cat is not an editor; it's simply a way of getting the text into the file in one go, with no editing or correcting. You write it once, and that's it.

If you're getting at something else, can you be clearer?

link|flag
Vicky: I think the question is legitimate. It may not be clear how to enter text using cat ( it was not clear for me definitely ) so. I think yours would be a very good comment, but not so good answer. – Oscar Reyes May 28 at 15:33
Exactly what Oscar said! It didn't know how to use cat that way. I've used it to output the content of a file but it never ocurred to me you could do what user:chaos explained. – Sparragus May 28 at 17:35
When no filename is specified, cat reads from stdin, like most other UNIX programs. – Adam Rosenfield May 28 at 17:37
OK - I didn't realise that it wasn't commonly known that you could use cat this way! Fair enough. – Vicky May 29 at 9:55
vote up 4 vote down

The joke is that you don't edit, you just use cat and perhaps (if you were going to be obtuse)... echo. For example:

echo "#stdio.h\n int main(int argc, char **argv){\nprintf(\"hello World\\n\");\nreturn(0);\n}" > helloworld.c

then

cat helloworld.c

repeat.

(also, I must be bored to go and type that out)

link|flag
4  
+1 for actually giving main its proper argument list and return value. That's dedication. – chaos May 28 at 15:29
:P , well I was going to the trouble of escaping the quotes (and even the newline in the quotes ... so why not hehe – Aiden Bell May 28 at 15:30
1  
If we're going to get really technical about it, shouldn't it be char** argv or char* argv[]? – MatrixFrog May 28 at 15:31
1  
Ha, you're right. You win one internet. – chaos May 28 at 15:32
I think you misread MatrixFrog :P – Aiden Bell May 28 at 15:32
vote up 26 vote down

Nah, echo is clearly better:

echo 'main(){puts("Hello world\n");}'  | gcc -xc -

Even if you want to use cat (felines are after all wonderful), why bother putting the source to disk? Just redirect cat's output to the compiler, as in the echo case.

link|flag
1  
@Alex I though it was classier too. Nice pipe usage. – Aiden Bell May 28 at 15:34
16  
And you have built-in version control via .bash_history! – dbr May 28 at 17:39
3  
Too bad bash can't execute an executable coming in from a pipe, otherwise you could do it without saving the output of the compiler with something like "echo ... | gcc -xc - -o - | execute-stdin-command" – Adam Rosenfield May 28 at 17:39
@Alex: OK, that's just f#$%ing cool! I've actually used cat on a system to enter code before, but the echo directly to the compiler I wish I had thought of that! – NoMoreZealots Aug 12 at 2:03
vote up 2 vote down

There's a book available on the subject.

link|flag
vote up 1 vote down

Lets see how far we can take this.

the output to all of these will be:

Hello World
$ perl -E"$(cat)"
say 'Hello World'
^D

$ test=$(cat); perl -E"$test"
say 'Hello World'
^D

$ cat | perl -M5.010
say 'Hello World'
^D

$ cat > test; test=$(cat test); perl -E"$test"
say 'Hello World'
^D

$ cat > test; test=$(cat test)$(cat); perl -E"$test"
say
^D
'Hello World'
^D

$ cat > test; test=$(cat test); perl -E"$test$(cat)"
say
^D
'Hello World'
^D

$ cat > test; test=$(cat test); perl -E"$(cat)$test"
'Hello World'
^D
link|flag
vote up 3 vote down

gcc? real programmers use cat and xxd:

$ cat | xxd -r > a.out
0000000: cefa edfe 0700 0000 0300 0000 0200 0000  ................
0000010: 0b00 0000 a803 0000 8500 0000 0100 0000  ................
0000020: 3800 0000 5f5f 5041 4745 5a45 524f 0000  8...__PAGEZERO..
0000030: 0000 0000 0000 0000 0010 0000 0000 0000  ................
<lot of other stuff>
0003090: 0a00 0000 0b00 0000 2000 6479 6c64 5f73  ........ .dyld_s
00030a0: 7475 625f 6269 6e64 696e 675f 6865 6c70  tub_binding_help
00030b0: 6572 005f 5f64 796c 645f 6675 6e63 5f6c  er.__dyld_func_l
00030c0: 6f6f 6b75 7000 6479 6c64 5f5f 6d61 6368  ookup.dyld__mach
00030d0: 5f68 6561 6465 7200 5f4e 5841 7267 6300  _header._NXArgc.
00030e0: 5f4e 5841 7267 7600 5f5f 5f70 726f 676e  _NXArgv.___progn
00030f0: 616d 6500 5f5f 6d68 5f65 7865 6375 7465  ame.__mh_execute
0003100: 5f68 6561 6465 7200 5f65 6e76 6972 6f6e  _header._environ
0003110: 005f 6d61 696e 0073 7461 7274 005f 6578  ._main.start._ex
0003120: 6974 005f 7075 7473 0000 0000            it._puts....
^D
$ chmod 755 ./a.out
$ ./a.out
Hello, world.

btw, I didn't know that 0xFEEDFACE was the magic number in Mach-O binaries... cool.

link|flag
1  
It's not (judging from your listing). It's 0xFEEDFACE (assuming the machine is little-endian). – Adrian Pronk Jul 28 at 6:04
Right! On my PowerPC machine (big endian) this is the result 0000000: feed face 0000 0012 0000 0000 0000 0002 ................ – Stefano Borini Jul 28 at 10:15
I treated it as a middle endian... getting old apparently :( – Stefano Borini Jul 28 at 21:46

Your Answer

Get an OpenID
or

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