File: bash-format.sh

package info (click to toggle)
freerdp3 3.20.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 68,492 kB
  • sloc: ansic: 410,926; cpp: 16,869; xml: 1,721; python: 1,155; sh: 783; lisp: 408; perl: 231; cs: 191; makefile: 111
file content (32 lines) | stat: -rwxr-xr-x 780 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/bash -e
#

SCRIPT_PATH=$(dirname "${BASH_SOURCE[0]}")
SCRIPT_PATH=$(realpath "$SCRIPT_PATH")
SRC_PATH="${SCRIPT_PATH}/.."

if [ $# -ne 0 ]; then
  if [ "$1" = "--help" ] || [ "$1" = "-h" ]; then
    echo "usage: $0 [options]"
    echo "\t--check.-c  ... run format check only, no files changed (default)"
    echo "\t--format,-f ... format files in place"
    echo "\t--help,-h   ... print this help"

    exit 1
  fi

  if [ "$1" = "--check" ] || [ "$1" = "-c" ]; then
    FORMAT_ARG=""
    REST_ARGS="${@:2}"
  fi
  if [ "$1" = "--format" ] || [ "$1" = "-f" ]; then
    FORMAT_ARG="-w"
    REST_ARGS="${@:2}"
  fi
fi

SCRIPTS=$(find ${SRC_PATH} -name "*.sh" -not -path "${SRC_PATH}/.git/*")
for script in $SCRIPTS; do
  echo $script
  shfmt -i 2 $FORMAT_ARG $script
done