1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-13 13:18:06 +03:00
samba-mirror/source3/script/format_indent.sh
Gerald Carter 386267447b r23599: Add new version of indent script copied from the the Linux
kernel tree.
(This used to be commit bc422ab5f152c3d7ff730a2e0a80ad3a196a797a)
2007-10-10 12:23:35 -05:00

13 lines
426 B
Bash
Executable File

#!/bin/sh
# -npro Do no read the '.indent.pro' files.
# -kr Use K&R formatting rules
# -i8 Set indentation level to 8 spaces.
# -ts8 Set tab size to 8 spaces
# -sob Swallow optional blank lines.
# -l80 Set the maximum line length at 80 characters.
# -ss On one-line for and while statments, force a blank before the semicolon
# -ncs Do not put a space after cast operators.
indent -npro -kr -i8 -ts8 -sob -l80 -ss -ncs "$@"