|
|
|
|
|
by CraigJPerry
1829 days ago
|
|
There's a bunch of tools that trip me up between the BSD and GNU versions. Find is the big one - so much so that i "cargo install fd-find" on my boxes these days and use the rust version across all hosts. I briefly flirted with using zsh's enhanced glob abilities, e.g. find . -type f -size +1m -ls
vs. ls **/*(.Lm+1)
|
|