How would you do this in bash
|
|
|||||
|
|
|
Edit: added 'a' argument to ls |
||||||
|
|
|
ls -trd */ | head --lines=-4 | xargs rm -rf works perfectly, thanks - these directories are only created and written to once, so there's no difference between ctime and mtime, but good point Alexey |
||
|
|
|
|
Another, BSD-safe, way to do it, with arrays (why not?)
|
||
|
|
|
|
you could do the following:
(remove the # before rm to make it really happen ;) ) |
||
|
|
|
|
Please clarify if you mean “delete all directories but the four newst ones” or “delete everything (files and directories) except for the four newest directories”. Please also note that creation times are not known for directories. One can only tell when a directory was last modified, that is, had files added, removed or renamed. |
||
|
|
