Activity stream
-
Bob Racko answered the question “implementation of cd command in unix” 2 years, 8 months ago · View
ok, if you are writing a shell the system call you will need to use is
all_ok = chdir( directory_name );
and all_ok is 0 if everything went right.