10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-09-27 03:51:01 +02:00
quantum_package/scripts/remove_trailing_spaces

17 lines
209 B
Plaintext
Raw Normal View History

2019-01-14 15:20:51 +01:00
#!/bin/bash
#
# Removes white spaces at the end of lines.
#
# Usage:
#
# remove_trailing_spaces FILE
#
if [[ -n $1 ]] ; then
exec sed --in-place 's| *$||' $1
else
2>& echo "Usage: $0 FILE"
exit 1
fi