--color=auto breaks as `ls` is always piped. Test stdout of the whole script to determine a sensible value for the flag.
20 lines
643 B
Bash
Executable File
20 lines
643 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
#
|
|
# List all files and directories but include the latest commits date and
|
|
# subject, similar to the file browser in web-UIs of services like GitHub. Also
|
|
# sort the entries by the commits date and time to see the most recent changed
|
|
# files/folders at the bottom.
|
|
|
|
local color_set
|
|
[ -t 1 ] && color_set=always || color_set=never
|
|
|
|
ls -1p --color="$color_set" "$@" \
|
|
| while read -r line; do
|
|
sanitized_line="$(sed 's/\x1b[^m]*m//g' <<<"$line")"
|
|
git_info="$(git log -1 --format=$'%ci\t%s' "$sanitized_line")"
|
|
printf "%s\t%s\n" "$line" "$git_info"
|
|
done \
|
|
| sort -r -t$'\t' -k2,2 \
|
|
| column -s$'\t' -t \
|
|
| cut -c -"$COLUMNS"
|