summaryrefslogtreecommitdiffstats
path: root/src/pmdk/utils/check-shebang.sh
blob: 1051d178b6ce3089d949c1a5dea5e9775a85fe05 (plain)
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
#!/usr/bin/env bash
# SPDX-License-Identifier: BSD-3-Clause
# Copyright 2017-2019, Intel Corporation
#
# utils/check-shebang.sh -- interpreter directive check script
#
set -e

err_count=0

for file in $@ ; do
        [ ! -f $file ] && continue
	SHEBANG=`head -n1 $file | cut -d" " -f1`
	[ "${SHEBANG:0:2}" != "#!" ] && continue
	if [ "$SHEBANG" != "#!/usr/bin/env" -a $SHEBANG != "#!/bin/sh" ]; then
		INTERP=`echo $SHEBANG | rev | cut -d"/" -f1 | rev`
		echo "$file:1: error: invalid interpreter directive:" >&2
		echo "	(is: \"$SHEBANG\", should be: \"#!/usr/bin/env $INTERP\")" >&2
		((err_count+=1))
	fi
done

if [ "$err_count" == "0" ]; then
	echo "Interpreter directives are OK."
else
	echo "Found $err_count errors in interpreter directives!" >&2
	err_count=1
fi

exit $err_count