mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-25 03:12:53 +00:00
12 lines
573 B
Bash
12 lines
573 B
Bash
#!/bin/bash
|
|
|
|
## We use xargs to prevent passing too many filenames to sed, but
|
|
## this command will fail if filenames contain spaces or newlines.
|
|
|
|
# Add KDEVPLATFORM_ prefix to all patterns matching [A-Z].*_H$
|
|
#
|
|
# Use carrefully and precautious review needed as it won't match
|
|
# if there's as example, trailing whitespace, #define FOO_H 1, or define FOO_H_
|
|
# It can also match some non wanted pattern like #undef HAVE_STDINT_H
|
|
find . -name '*.h' -print | xargs sed -i 's/[A-Z].*_H$/KDEVPLATFORM_&/'
|
|
#find plugins/ -name '*.h' -print | xargs sed -i 's/[A-Z].*_H$/PLUGIN_&/'
|