blob: 931c99fac8a2c9d9c38369d372bdac6a4c7e7dc8 [file] [log] [blame]
Andrew Grimbergebc710a2017-01-30 12:59:38 -08001#!/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
Andrew Grimberge6918c32017-05-03 16:17:08 -040016directory=${1:-"."}
Andrew Grimbergebc710a2017-01-30 12:59:38 -080017
18echo "Scanning $directory"
Andrew Grimberge6918c32017-05-03 16:17:08 -040019if LC_ALL=C grep -r '[^[:print:][:space:]]' "$directory"; then
20 echo "Found files containing non-ascii characters."
21 exit 1
22fi
Andrew Grimbergebc710a2017-01-30 12:59:38 -080023
24echo "All files are ASCII only"
Andrew Grimberge6918c32017-05-03 16:17:08 -040025