I have the following file.dev
1 DEVICES {
2 GLOBAL-CONFIG {
3 framerate = "20000";
4 subframes = "0";
5 max_consec_timeouts = "10";
6 max_total_timeouts = "1000";
7 schedmode = "Standard";
8 clustermode = "Standard";
9 }
10 IO-DEVICES {
11 }
12 COMPUTING-DEVICES {
13 RT_WORKSTATION FDT-C-XM-0120 = {
14 hostname = "FDT-C-XM-0120";
15 ipaddress = "fdt-c-XM-0120.fdtel.exter";
16 DISPLAYS {
17 main = "FDT-C-XM-0120:0.0";
18 }
19 SCHEDPARAM {
20 active = "0";
21 framerate = "20000";
22 subframes = "0";
23 max_consec_timeouts = "10";
24 max_total_timeouts = "1000";
25 }
26 }
27
28 RT_HOST fdt-c-agx-0008 = {
29 hostname = "fdt-c-agx-0008";
30 ipaddress = "fdt-c-agx-0008";
31 SCHEDPARAM {
32 active = "0";
33 framerate = "20000";
34 subframes = "0";
35 max_consec_timeouts = "10";
36 max_total_timeouts = "1000";
37 }
38 }
39
40 # RT_HOST fdt-c-agx-0003 = {
41 # hostname = "fdt-c-agx-0003";
42 # ipaddress = "fdt-c-agx-0003.fdtel.exter";
43 # SCHEDPARAM {
44 # active = "0";
45 # framerate = "20000";
46 # subframes = "0";
47 # max_consec_timeouts = "10";
48 # max_total_timeouts = "1000";
49 # }
50 # }
51 }
52 }
In this file the text parts part 1 (from line 28 till 38) and part 2 (from line 40 till 50) are parts which the user switch between. As we can see part 2 is commented out and part one is active.
So i'm trying to automate that using bash script in such a way that the user only enters the part number he wants and the other is commented out. This way the use must not comment out each line.
# example
if [ "$userEntry" = "part2"]
then
deactivate part one by typing adding from line 28 till 38 and activate part 2 by removing the #
and the output would look like
1 DEVICES {
2 GLOBAL-CONFIG {
3 framerate = "20000";
4 subframes = "0";
5 max_consec_timeouts = "10";
6 max_total_timeouts = "1000";
7 schedmode = "Standard";
8 clustermode = "Standard";
9 }
10 IO-DEVICES {
11 }
12 COMPUTING-DEVICES {
13 RT_WORKSTATION FDT-C-XM-0120 = {
14 hostname = "FDT-C-XM-0120";
15 ipaddress = "fdt-c-XM-0120.fdtel.exter";
16 DISPLAYS {
17 main = "FDT-C-XM-0120:0.0";
18 }
19 SCHEDPARAM {
20 active = "0";
21 framerate = "20000";
22 subframes = "0";
23 max_consec_timeouts = "10";
24 max_total_timeouts = "1000";
25 }
26 }
27
28 # RT_HOST fdt-c-agx-0008 = {
29 # hostname = "fdt-c-agx-0008";
30 # ipaddress = "fdt-c-agx-0008";
31 # SCHEDPARAM {
32 # active = "0";
33 # framerate = "20000";
34 # subframes = "0";
35 # max_consec_timeouts = "10";
36 # max_total_timeouts = "1000";
37 # }
38 # }
39
40 RT_HOST fdt-c-agx-0003 = {
41 hostname = "fdt-c-agx-0003";
42 ipaddress = "fdt-c-agx-0003.fdtel.exter";
43 SCHEDPARAM {
44 active = "0";
45 framerate = "20000";
46 subframes = "0";
47 max_consec_timeouts = "10";
48 max_total_timeouts = "1000";
49 }
50 }
51 }
52 }
Note that the lines order in the file.dev do not change.
I hope i could make my question clear and thanks in advance