#!/usr/bin/sh

# [Pluma Tool]
# Name=Remove trailing spaces
# Comment=Remove useless trailing spaces in your file
# Input=document
# Output=replace-document
# Shortcut=<Alt>F12
# Applicability=all
# Save-files=nothing
# Languages=

sed 's/[[:blank:]]*$//'
