How can I find the alphabetically last filepath in whole filesystem? -
finding first filepath seems easy task,
$ sudo find -s / -type f -print -quit /.ds_store
but how can find last 1 quickly?
$ sudo find -s / -type f -print | tail -n1 ^c
this command takes time do.
Comments
Post a Comment