mirror of
https://github.com/dandavison/delta.git
synced 2026-05-29 11:19:34 +02:00
12 lines
215 B
Bash
Executable File
12 lines
215 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DIR=$(dirname ${BASH_SOURCE[0]})
|
|
|
|
delta --help | \
|
|
$DIR/ansifilter | \
|
|
rg ' --[^-].+ <' | \
|
|
rg -v 'deprecated' | \
|
|
awk 'BEGIN{FS="--"}; {print $2}' | \
|
|
awk '{print $1}' | \
|
|
sort
|