bin/ll1 @ b67a34a9c6b0

Kill git prompt for NOVCSPROMPT too
author Steve Losh <steve@stevelosh.com>
date Sat, 01 Feb 2020 20:00:13 -0500
parents dcbf704290a1
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