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

Popular posts from this blog

sql - can we replace full join with union of left and right join? why not? -

javascript - Parallax scrolling and fixed footer code causing width issues -

iOS: Performance of reloading UIImage(name:...) -