[LSD(eluxe)](https://github.com/Peltoche/lsd) is a file listing utility written in Rust which has the killer feature of being able to specify the exact columns you want to see in the long output. # Usage Notes When using `lsd` ## Symlink Dereferencing If the `deference` option (or `-L`) is set, then the output will not display the link pointer, only the name of the target file. ```sh echo 'dereference: true' >> ~/.config/lsd/config.yaml lsd -l ``` ```sh ❯ lsd -l Name Size Date Modified bin/ 0 B 2023-02-07 18:39:36 ``` ```sh echo 'dereference: false' >> ~/.config/lsd/config.yaml lsd -l ``` ```sh Name Size Date Modified bin@ ⇒ /home/xybre/Source/Mine/my-scripts/bin 38 B 2022-02-17 00:39:41 ```