Answers for "shell script to convert yaml"

0

shell script to convert yaml

ps -aef|grep ClientProvision.exe
cd /opt/Logs/dmApp
date=date '+%d-%m-%y_%H_'
cat ClientProv_30xcf_$date *.log |grep "Loading InRoamer Details.."
Posted by: Guest on January-27-2021
0

shell script to convert yaml

#!bin/bash
Posted by: Guest on May-20-2021
1

convert shell script to yaml

ps -aef|grep ClientProvision.exe
cd /opt/Logs/dmApp
date=date '+%d-%m-%y_%H_'
cat ClientProv_30xcf_$date *.log |grep "Loading InRoamer Details.."
Posted by: Guest on January-27-2021
-1

shell script to convert yaml

date=date '+%d_%m_%Y_05_'
#echo $date
cd /opt/Logs/dmApp
logfile=ClientProv_30xcf_$date*.log
#echo $logfile
cat $logfile |grep "Loading InRoamer Details.."
Posted by: Guest on January-27-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language