-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcaget_pvs.bash
71 lines (54 loc) · 1.44 KB
/
caget_pvs.bash
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/bin/bash
#
# Copyright (c) 2016 Jeong Han Lee
# Copyright (c) 2016 European Spallation Source ERIC
#
# The program is free software: you can redistribute
# it and/or modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation, either version 2 of the
# License, or any newer version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
# more details.
#
# You should have received a copy of the GNU General Public License along with
# this program. If not, see https://www.gnu.org/licenses/gpl-2.0.txt
#
# Author : Jeong Han Lee
# email : [email protected]
# Date : Monday, November 28 11:41:01 CET 2016
# version : 0.0.1
if [ -z "$1" ]; then
printf "\n";
printf "usage: %16s \"pv list file\"\n\n" "$0"
exit 1;
fi
declare -a pvlist=();
declare cmd="caget"
function pvs_from_list()
{
local i
let i=0
while IFS= read -r line_data; do
if [ "$line_data" ]; then
[[ "$line_data" =~ ^#.*$ ]] && continue
pvlist[i]="${line_data}"
((++i))
fi
done < $1
}
pvs_from_list $1
substring=$2
if [ -z "$substring" ]; then
for pv in ${pvlist[@]}; do
$cmd $pv
done
else
for pv in ${pvlist[@]}; do
if test "${pv#*$substring}" != "$pv"; then
$cmd $pv
fi
done
fi