14 строки
272 B
Bash
Исполняемый файл
14 строки
272 B
Bash
Исполняемый файл
#!/bin/bash
|
|
#
|
|
# Copyright (c) 2015 Intel, Inc. All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
export LANG=C
|
|
find . -not \( -name .svn -prune -o -name .git -prune \) -type f -print0 | xargs -0 sed -i '' -E "s/[[:space:]]*$//"
|
|
|