Each Unix process has its own current directory. For instance, your
shell has a current directory. So do vi,
ls, sed, and every other Unix
process. When your shell starts a process running, that child process
starts with the same current directory as its parent. So how does
ls know which directory to list? It uses the
current directory it inherited from its parent process, the shell:
% ls
...Listing of ls's current directory appears,
which is the same current directory as the shell.
Each process can change its current directory and that
won't change the current directory of other
processes that are already running. So: