mirror of
https://github.com/centreon/centreon-plugins.git
synced 2025-07-31 01:24:35 +02:00
* Move network::juniper::common::junos plugins to network::juniper::common::junos::snmp * New plugins network::juniper::common::junos::netconf::* * fix network::juniper::common::junos::snmp::mode::interfaces bias_current to divise by 1000 instead of 100 Co-authored-by: garnier-quentin <garnier.quentin@gmail.com>
14 lines
209 B
Bash
Executable File
14 lines
209 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Read the -f option for the file path and ignore the others options
|
|
while getopts "f:" opt; do
|
|
case $opt in
|
|
f)
|
|
file_path="$OPTARG"
|
|
;;
|
|
*)
|
|
;;
|
|
esac
|
|
done
|
|
|
|
cat $file_path |