vote up 4 vote down star
1

I would like to know exactly how the "Is" command works in Linux and Unix.

As far as I know, ls forks & exec to the linux/unix shell and then gets the output (of the current file tree. eg./home/ankit/). I need a more detailed explanation, as I am not sure about what happens after calling fork.

Could any one please explain the functionality of the 'ls' command in detail?

flag

5 Answers

vote up 19 vote down check

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 files in the directory. If it needs more information about one of them it calls stat().

link|flag
1  
As a point of interest, I think you'll find it stat()'s just about every file in the directory, especially if colors and/or file type pre/suffixs are turned on. – Matthew Scharley Oct 15 '08 at 10:01
1  
monoxide: an exec() without a fork() will replace the currently running process, which means your shell would vanish the first time you ran a command. – Greg Hewgill Oct 15 '08 at 10:04
1  
@Mark: it also uses lstat() since otherwise it only sees the permissions of the file at the far end of a symlink and not the symlink itself. – Jonathan Leffler Oct 19 '08 at 2:47
1  
@monoxide: the shell can run other programs in exactly one of two ways - by using exec() to replace itself with the other program, or by using fork() and then exec(). Those are the only mechanisms available in Unix (unless you count pthread_spawn()). – Jonathan Leffler Oct 19 '08 at 2:48
1  
jonathan, the pthread library is based on the clone() system call (in linux - other unix versions with kernel threading will have something similar but probably not identical). Using clone() directly and then exec() is another way you could launch a program, though not one that's useful in practice. – Mark Baker Oct 20 '08 at 16:00
show 4 more comments
vote up 7 vote down

To add to the answer, in The C Programming Language book (K&RC) they have given a small example on how to go about implementing ls. They have explained the datastructures and functions used very well.

link|flag
vote up 2 vote down

To understand what ls does, you could take a gander at the OpenSolaris source: http://cvs.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/cmd/ls/ls.c.

If that´s overwhelming, on Solaris you start by using truss to look at the system calls that ls makes to understand what it does. Using truss, try:

truss -afl -o ls.out /bin/ls

then look at the output in ls.out

I believe that trace is the equivalent to truss in Linux.

link|flag
1  
The Linux version of "truss" is called "strace". – Thomas Jul 6 at 13:42
vote up 1 vote down

If you really want to understand the detailed innards of ls, look at the source code. You can follow tpgould's link to the Solaris source, or it's easy to find the source online from any Linux or BSD distribution.

I'll particularly recommend the 4.4BSD source.

As I recall, ls starts by parsing its many options, then starts with the files or directories listed on the command line (default is "."). Subdirectories are handled by recursion into the directory list routine. There's no fork() or exec() that I recall.

link|flag
vote up 0 vote down

more information about unix ls command

ls command options with practical examples

link|flag

Your Answer

Get an OpenID
or

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