1
1
openmpi/contrib/whitespace-purge.sh

14 строки
272 B
Bash
Исходник Обычный вид История

2015-06-23 20:59:57 -07:00
#!/bin/bash
#
# Copyright (c) 2015 Intel, Inc. All rights reserved.
# $COPYRIGHT$
2015-06-25 13:27:56 -07:00
#
2015-06-23 20:59:57 -07:00
# Additional copyrights may follow
2015-06-25 13:27:56 -07:00
#
2015-06-23 20:59:57 -07:00
# $HEADER$
#
export LANG=C
find . -not \( -name .svn -prune -o -name .git -prune \) -type f -print0 | xargs -0 sed -i '' -E "s/[[:space:]]*$//"
2015-06-25 13:27:56 -07:00