mirror of
https://github.com/martinrotter/rssguard.git
synced 2024-12-29 09:31:24 +01:00
10 lines
314 B
Bash
10 lines
314 B
Bash
#!/bin/bash
|
|
|
|
# This script will generate list of public headers to be included in packages.
|
|
#
|
|
# First argument is the root folder of library of RSS Guard.
|
|
|
|
root_folder="$1"
|
|
headers_regex=".+(services/abstract).+\.h$"
|
|
|
|
find "$root_folder" -type f -regextype posix-egrep -regex "$headers_regex" | sed -e "s|^src|..|" |