Rewrite tabs business

This commit is contained in:
Ev Bogdanov 2017-08-16 20:07:13 +03:00
parent 950e6f45ce
commit 632eff130c
2 changed files with 4 additions and 9 deletions

6
bin/t+
View file

@ -1,5 +1,3 @@
#!/usr/bin/env perl #!/usr/bin/env bash
while (<>) { sed 's/^/ /'
print "\t$_";
}

7
bin/t-
View file

@ -1,6 +1,3 @@
#!/usr/bin/env perl #!/usr/bin/env bash
while (<>) { sed 's/^ //'
$_ =~ s/^\t//;
print $_;
}