File listing and display
[filesystem.incl: fix (P1)](https://github.com/john-cd/rust_howto/issues/236)
lsd
lsd
is a rewrite of GNU ls with lots of added features like colors, icons, tree-view, additional formatting options.
apt install lsd
exa
exa is a modern replacement for ls.
broot
broot
is a new way to see and navigate directory trees.
bat
bat
is a fast cat
clone with syntax highlighting and Git integration.
bat README.md
# Display multiple files at once
bat src/*.rs
# Read from stdin, determine the syntax automatically
curl -s https://sh.rustup.rs | bat
# Show and highlight non-printable characters:
bat -A /etc/hosts
open
Opens a path or URL using the program configured on the system.
[filesystem: organize (P1)](https://github.com/john-cd/rust_howto/issues/237)