File: retab

package info (click to toggle)
libnginx-mod-http-lua 1%3A0.10.28-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,456 kB
  • sloc: ansic: 42,658; perl: 480; sh: 303; python: 23; makefile: 11
file content (8 lines) | stat: -rwxr-xr-x 84 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
#!/bin/bash

for f in $*; do
	if [ -f "$f" ]; then
		vim -c retab -c x $f
	fi
done