Web M&M
https://mam.matfyz.cz
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
231 B
18 lines
231 B
6 years ago
|
#!/bin/sh
|
||
|
|
||
|
if test "$#" -lt 1
|
||
|
then
|
||
|
echo "Usage: $0 file ..."
|
||
|
exit 2
|
||
|
fi
|
||
|
|
||
|
for file in "$@"
|
||
|
do
|
||
|
# Do the sed magic: keep replacing 4 spaces at the begining of line
|
||
|
sed -i -re '
|
||
|
: loop
|
||
|
s/^( *) /\1 /
|
||
|
t loop
|
||
|
' "$file"
|
||
|
done
|