rm: Remove -i from usage and manpage

We do not support it so do not lie to the user.
This commit is contained in:
sin
2015-02-19 14:54:12 +00:00
parent bf5f6a08a4
commit 8d53fc9a79
2 changed files with 5 additions and 8 deletions

5
rm.c
View File

@@ -5,7 +5,7 @@
static void
usage(void)
{
eprintf("usage: %s [-f | -i] [-Rr] file ...\n", argv0);
eprintf("usage: %s [-f] [-Rr] file ...\n", argv0);
}
int
@@ -15,9 +15,6 @@ main(int argc, char *argv[])
case 'f':
rm_fflag = 1;
break;
case 'i':
rm_fflag = 0;
break;
case 'R':
case 'r':
rm_rflag = 1;