blob: 415d6fe876616e7f89b05c1b02de5c13cc02c9dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#!/usr/bin/env sh
printf 'Running script: %s\n' "$(basename ${0})" >&2
function check_http_response()
{
http_response="${1}"
if [ "${http_response}" != "200" ]; then
printf '%s error: %s\n' "${0}" "HTTP Response code ${http_response}; you probably need to update the list url!" >&2
exit 1
fi
}
function is_file_empty()
{
file="${1}"
if [ ! -r "${file}" ]; then
printf '%s error: %s\n' "${0}" "file ${file} not found or not readable!" >&2
exit 1
fi
if [ `cat "${file}" | wc -l` -eq 0 ]; then
printf '%s error: %s\n' "${0}" "file ${file} empty!" >&2
exit 1
fi
}
function is_str_empty()
{
str="${1}"
errmsg="${2}"
if [ -z "${str}" ]; then
printf '%s error: %s\n' "${0}" "${errmsg}" >&2
exit 1
fi
}
|