-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add dev-scripts/sed-endif.sh (untested)
- Loading branch information
Showing
1 changed file
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
#!/usr/bin/env bash | ||
|
||
# ----------------------------------------------------------------------------- | ||
# Safety settings (see https://gist.github.com/ilg-ul/383869cbb01f61a51c4d). | ||
|
||
if [[ ! -z ${DEBUG} ]] | ||
then | ||
set ${DEBUG} # Activate the expand mode if DEBUG is anything but empty. | ||
else | ||
DEBUG="" | ||
fi | ||
|
||
set -o errexit # Exit if command failed. | ||
set -o pipefail # Exit if pipe failed. | ||
set -o nounset # Exit if variable not set. | ||
|
||
# Remove the initial space and instead use '\n'. | ||
IFS=$'\n\t' | ||
|
||
# ----------------------------------------------------------------------------- | ||
# Identify the script location, to reach, for example, the helper scripts. | ||
|
||
script_path="$0" | ||
if [[ "${script_path}" != /* ]] | ||
then | ||
# Make relative path absolute. | ||
script_path="$(pwd)/$0" | ||
fi | ||
|
||
script_name="$(basename "${script_path}")" | ||
|
||
script_folder_path="$(dirname "${script_path}")" | ||
script_folder_name="$(basename "${script_folder_path}")" | ||
|
||
# ============================================================================= | ||
|
||
cd "$(dirname "${script_folder_path}")" | ||
# -exec bash -c '(cd "{}/.."; pwd; git push)' \; | ||
|
||
echo "[*.h *.c *.cpp]" | ||
files=$(find . -type f \( -name '*.h' -o -name '*.c' -o -name '*.cpp' \) ) | ||
for f in $files | ||
do | ||
( | ||
echo "$f" | ||
sed -i.bak -e 's|#endif[ \t][ \t]*\/\*\(.*\)\*\/|#endif //\1|' "${f}" | ||
rm -v "${f}.bak" | ||
) | ||
done | ||
|
||
echo | ||
echo "[Dotless files]" | ||
|
||
files=$(find . -type f -iname '*' -not -iname "*.*" -not -path '*/.git/*' -not -path '*/node_modules/*' -not -path '*/LICENSE*') | ||
for f in $files | ||
do | ||
( | ||
echo "$f" | ||
sed -i.bak -e 's|#endif[ \t][ \t]*\/\*\(.*\)\*\/|#endif //\1|' "${f}" | ||
rm -v "${f}.bak" | ||
) | ||
done |