Fix shellcheck for scripts directory
[releng/builder.git] / scripts / check-unicode.sh
1 #!/bin/bash
2
3 # @License EPL-1.0 <http://spdx.org/licenses/EPL-1.0>
4 ##############################################################################
5 # Copyright (c) 2015 The Linux Foundation and others.
6 #
7 # All rights reserved. This program and the accompanying materials
8 # are made available under the terms of the Eclipse Public License v1.0
9 # which accompanies this distribution, and is available at
10 # http://www.eclipse.org/legal/epl-v10.html
11 #
12 # Contributors:
13 #   Thanh Ha (The Linux Foundation) - Initial implementation
14 ##############################################################################
15
16 directory="."
17 if [ ! -z "$1" ]; then
18     directory="$1"
19 fi
20
21 echo "Scanning $directory"
22 while IFS= read -r -d '' x
23 do
24     if LC_ALL=C grep -q '[^[:print:][:space:]]' "$x"; then
25         echo "file $x contains non-ascii characters"
26         exit 1
27     fi
28 done < <(find "$directory" -type f -print0)
29
30 echo "All files are ASCII only"