commit bash-20161104 snapshot

This commit is contained in:
Chet Ramey
2016-11-05 13:28:27 -04:00
parent 553a7d66e4
commit ec1101c37e
13 changed files with 201 additions and 12 deletions
+3 -1
View File
@@ -122,7 +122,7 @@ rm_builtin (list)
rval = EXECUTION_SUCCESS;
reset_internal_getopt ();
while ((opt = internal_getopt (list, "Rrf")) != -1)
while ((opt = internal_getopt (list, "Rrfi")) != -1)
{
switch (opt)
{
@@ -133,6 +133,8 @@ rm_builtin (list)
case 'f':
force = 1;
break;
case 'i':
return (EX_DISKFALLBACK);
CASE_HELPOPT;
default:
builtin_usage ();