remove(list, frame=<<see below>>, where=<<see below>>)
If both where and frame are omitted, removal is only permitted if the object came from the working database. If both where and frame are specified, then frame is ignored.
The rm function performs a similar task; it only removes objects from the working directory but takes the names of an arbitrary number of objects.
remove(c("abc", "def")) # remove "abc" and "def" rm(abc, def) # also removes "abc" and "def"remove(ls("foo*")) # remove all objects whose name begins with "foo"