1
vote
Why is it that UTF-8 encoding is used when interacting with a UNIX/Linux environment?
I believe that when Microsoft started using a two byte encoding, characters above 0xffff had not been assigned, so using a two byte encoding meant that no-one had to worry about characters being di …
19
votes
How does the ‘ls’ command work in Linux/Unix?
ls doesn't fork. The shell forks and execs in order to run any command that isn't built in, and one of the commands it can run is ls.
ls uses opendir() and readdir() to step through all the …
2
votes
Getting The Full Result from “ps”
There are two different option syntaxes for ps; the standard POSIX one based on SysV, and the BSD one. GNU ps, as used on linux, supports both, which it can do because the POSIX options have dashes …
2
votes
What is a bus error?
It normally means an un-aligned access.
An attempt to access memory that isn't physically present would also give a bus error, but you won't see this if you're using a processor with an MMU …
0
votes
what’s a more concise way of finding text in a set of files?
You say that you like the output of your method (using find) better. The only difference I can see between them is that grepping multiple files will put the filename on the front.
You can …
0
votes
What was your biggest *nix blooper?
I had a nasty keyboard with a big return key that extended to where ~ was meant to be, so when I tried to do "rm -rf ~" I lost a lot more than I intended.
It could have been a lot worse, I …
