aboutsummaryrefslogtreecommitdiff
path: root/tabulate.sed
blob: cd30ff10b4b6f60821971fffb72d372f150aadbb (plain) (blame)
1
2
3
4
5
6
7
8
#!/bin/sed -Efi

# Script to convert spaces to tabs
# Usage: ./tabulate.sed file1 file2 ... fileN

:l
s/^(\t*)    /\1\t/
t l