1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-09-19 09:54:05 -07:00
rc/sh/similar

19 lines
559 B
Bash
Executable file

#!/usr/bin/env sh
# compat: +ash +bash +dash +zsh YES_BB_AWK
similar() { ### @-
### highlight adjacent lines up to the first inequivalent character.
[ $# -eq 0 ] || { printf "%s\n" "$0: does not take arguments" >&2; return 1; }
awk '
{
i=0
for(c=1;c<length;c++)
if(substr($0,c,1)==substr(L,c,1)) i++
else break
#print substr($0,1,i) "\033[7m" substr($0,i+1) "\033[0m"
print "\033[31m" substr($0,1,i) "\033[0m" substr($0,i+1)
L=$0
}'
}
[ -n "${preload+-}" ] || similar "$@"