Remove trailing whitespace from all text files

I've used the following command to remove the trailing whitespace for
all tracked text files:

git grep -Il '' | xargs sed -i 's/[ \t]*$//'
This commit is contained in:
Tom Krizek
2023-06-07 16:00:00 +02:00
parent 589752fc69
commit 5893debf46
87 changed files with 764 additions and 764 deletions

View File

@@ -38,7 +38,7 @@ burst() {
}
stat() {
clients=`rndccmd ${1} status | grep "recursive clients" |
clients=`rndccmd ${1} status | grep "recursive clients" |
sed 's;.*: \([^/][^/]*\)/.*;\1;'`
echo_i "clients: $clients"
[ "$clients" = "" ] && return 1