1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/source3/script/format_indent.sh
Andreas Schneider 18dd3f3dd3 s3:script: Fix code spelling
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Joseph Sutton <josephsutton@catalyst.net.nz>
2023-07-19 09:58:37 +00:00

13 lines
427 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 statements, force a blank before the semicolon
# -ncs Do not put a space after cast operators.
indent -npro -kr -i8 -ts8 -sob -l80 -ss -ncs "$@"