bin/ll1 @ dcbf704290a1

The cleanup continues
author Steve Losh <steve@stevelosh.com>
date Fri, 17 Jan 2020 21:53:25 -0500
parents ef89c7a131b1
children (none)
#!/usr/bin/env bash

set -euo pipefail

if command -v tree >/dev/null; then
    tree --dirsfirst --noreport -ChFupDaL 1 "$@"
else
    ls --color=auto --group-directories-first -l1 "$@"
fi