ea49d11668
IDK how to format this for a repository, pls send help.
7 lines
153 B
Bash
Executable File
7 lines
153 B
Bash
Executable File
#!/bin/sh
|
|
if [ -z $1 ]; then
|
|
echo "Must specify a file to modify..."
|
|
exit 1
|
|
fi
|
|
perl -pe 's;^=?(\S+)(?:-[[:digit:]]+\.\S+)(\s)(\S+)$;\1\2\3;' -i "${1}"
|