mirror of
https://github.com/lcn2/calc.git
synced 2025-08-16 01:03:29 +03:00
28 lines
427 B
Plaintext
28 lines
427 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
|