bin/l1 @ a17191abd5e9

Add u, update lines
author Steve Losh <steve@stevelosh.com>
date Sun, 02 Feb 2020 21:05:54 -0500
parents dcbf704290a1
children (none)
#!/usr/bin/env bash

set -euo pipefail

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