mirror of
https://github.com/FAUSheppy/config
synced 2025-12-06 07:01:36 +01:00
11 lines
264 B
Bash
Executable File
11 lines
264 B
Bash
Executable File
#!/bin/bash
|
|
if awk -Wv 2>/dev/null | head -1 | grep -q '^mawk'; then
|
|
uniq_linebuffered() {
|
|
awk -W interactive '$0 != l { print ; l=$0 ; fflush(); }' "$@"
|
|
}
|
|
else
|
|
uniq_linebuffered() {
|
|
awk '$0 != l { print ; l=$0 ; fflush(); }' "$@"
|
|
}
|
|
fi
|