Feature #3898 » rm.c.patch
coreutils-8.21/src/rm.c 2013-07-19 11:51:45.526576400 -0400 | ||
---|---|---|
339 | 339 |
{ |
340 | 340 |
fprintf (stderr, |
341 | 341 |
(x.recursive |
342 |
? _("%s: remove all arguments recursively? ") |
|
343 |
: _("%s: remove all arguments? ")), |
|
344 |
program_name); |
|
342 |
? ngettext ("%s: remove %zu argument recursively? ", |
|
343 |
"%s: remove %zu arguments recursively? ", |
|
344 |
select_plural (n_files)) |
|
345 |
: ngettext ("%s: remove %zu argument? ", |
|
346 |
"%s: remove %zu arguments? ", |
|
347 |
select_plural (n_files))), |
|
348 |
program_name, n_files); |
|
345 | 349 |
if (!yesno ()) |
346 | 350 |
exit (EXIT_SUCCESS); |
347 | 351 |
} |