From 6a12cab14cde525dadefa6a5fd94db857b1e43e7 Mon Sep 17 00:00:00 2001 From: Siraaj Khandkar Date: Tue, 31 Jul 2018 13:44:05 -0400 Subject: [PATCH] Automate parameter value reporting --- bin/khatus | 49 ++++++++++++++++++++++++++----------------------- 1 file changed, 26 insertions(+), 23 deletions(-) diff --git a/bin/khatus b/bin/khatus index 8e546ca..f6f5e18 100755 --- a/bin/khatus +++ b/bin/khatus @@ -59,12 +59,17 @@ main() { interval_inp_energy=1 # User-overrides + # --------------------------------------------------------------------- + # IMPORTANT: + # In order for automatic value reporting, at startup, to work - ensure that + # long option names match corresponding variable names! + # --------------------------------------------------------------------- long_options='' long_options+='debug' - long_options+=',bin_dir:' - long_options+=',data_dir:' - long_options+=',weather_station:' - long_options+=',screen_device:' + long_options+=',dir_bin:' + long_options+=',dir_data:' + long_options+=',weather_station_id:' + long_options+=',screen_brightness_device_name:' long_options+=',prefixes_of_net_interfaces_to_show:' long_options+=',disk_space_device:' long_options+=',disk_io_device:' @@ -100,19 +105,19 @@ main() { debug=1 shift ;; - --bin_dir) + --dir_bin) dir_bin="$2" shift 2 ;; - --data_dir) + --dir_data) dir_data="$2" shift 2 ;; - --weather_station) + --weather_station_id) weather_station_id="$2" shift 2 ;; - --screen_device) + --screen_brightness_device_name) screen_brightness_device_name="$2" shift 2 ;; @@ -211,21 +216,19 @@ main() { screen_brightness_device_path='/sys/class/backlight' screen_brightness_device_path+="/$screen_brightness_device_name" - ( echo "Khatus starting with the following parameters:" - ( echo " debug|= $debug" - echo " dir_bin|= $dir_bin" - echo " dir_data|= $dir_data" - echo " pipe|= $pipe" - echo " screen_brightness_device_name|= $screen_brightness_device_name" - echo " screen_brightness_device_path|= $screen_brightness_device_path" - echo " weather_station_id|= $weather_station_id" - echo " prefixes_of_net_interfaces_to_show|= $prefixes_of_net_interfaces_to_show" - echo " disk_space_device|= $disk_space_device" - echo " disk_io_device|= $disk_io_device" - echo " thermal_zone|= $thermal_zone" - echo " fan_path|= $fan_path" - ) | column -ts\| - echo '' + ( + echo '==============================================' + echo "Khatus starting with the following parameters:" + echo '==============================================' + for param in \ + $(echo -n "$long_options" \ + | awk -v RS=, '{sub(":$", ""); print $0}' + ) + do + echo "$param := ${!param}" + done \ + | column -ts: + echo '----------------------------------------------' ) >&2 mkdir -p "$dir_data" -- 2.20.1