[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
rm feature: don't attempt to remove the same file twice
From: |
Ed Avis |
Subject: |
rm feature: don't attempt to remove the same file twice |
Date: |
Thu, 1 Sep 2016 10:00:17 +0000 |
% touch a
% rm a a
rm: cannot remove 'a': No such file or directory
It might be better for rm to remember that it has seen the filename 'a' before,
and just warn rather than check the filesystem again.
This would be a bit more user-friendly and a bit faster, if you accept that
filesystem operations are slower than doing user-space checking of seen
filenames.
It would not catch 'rm a ./a' and similar cases but it would be an improvement.
--
Ed Avis <address@hidden>
Please ignore autogenerated disclaimer below this point.
- rm feature: don't attempt to remove the same file twice,
Ed Avis <=