Live data from Hacker News

A better `ls` in Rust

bekk.christmas

1–5 of 5 posts

Re: A better `ls` in Rust

#2
So if I understand it correctly:

- It's not actually better than ls:

> ignoring the permissions and author of the files (because who cares about those)

- Most of the heavy lifting is done by walkdir.

A better title may have been "The walkdir crate is awesome".

Re: A better `ls` in Rust

#3
post #2

So if I understand it correctly: - It's not actually better than ls : > ignoring the permissions and author of the files (because who cares about those) - Most of the heavy lifting is done by walkdir . A better title may have been "The walkdir crate is awesome".

Plus the clap crate. We could make all of this a crate and have the same ls in less than 10 lines