mv: Remove -i from usage and manpage

This commit is contained in:
sin
2015-02-19 14:56:02 +00:00
parent 8d53fc9a79
commit 0e008fe349
2 changed files with 5 additions and 6 deletions

3
mv.c
View File

@@ -28,7 +28,7 @@ mv(const char *s1, const char *s2, char ff)
static void
usage(void)
{
eprintf("usage: %s [-f | -i] source... dest\n", argv0);
eprintf("usage: %s [-f] source... dest\n", argv0);
}
int
@@ -38,7 +38,6 @@ main(int argc, char *argv[])
ARGBEGIN {
case 'f':
case 'i':
break;
default:
usage();