|
4 years ago | |
---|---|---|
.. | ||
src | 4 years ago | |
Makefile | 3 years ago | |
README.md | 4 years ago |
Call the unlink function to remove the specified file.
The program unlink
asks the kernel to unlink the file
whose name is specified as the second command line argument
by the mean of the sys_unlinkat
system call.
$ unlink FILE
My first attempt to implement error reporting, hurrey!
The unlink
program reports system error numbers writing them
to stderr
. The meaning of the codes is specified in the header
files /include/uapi/asm-generic/errno{,-base}.h
found in the
kernel source tree.