Files
calc/help/rm
2017-05-21 15:38:36 -07:00

28 lines
426 B
Plaintext

NAME
rm - remove file(s)
SYNOPSIS
rm(["-f",] name, ...)
TYPES
name name of a file(s)
return nil
DESCRIPTION
Removes one or more files. If the first arg is "-f", then a forced
removal is performed and "no such file" errors are ignored.
EXAMPLE
> rm("junk")
> rm("-f", "more/junk.cal", "curds", "whey")
LIMITS
name must be a non-zero length string
LIBRARY
none
SEE ALSO
rmdir