I have a file with the content shown below:
***************Encrypted String***************
ezF7LcHO0Zlb+8kkBeIwtA==
**********************************************
I need to get only encrypted password from above. I used Google to search for an answer, and I got this example (below), but it didn't work:
sed -n '/***************Encrypted String***************/,/**********************************************/p' $file
I tried but it didn't work
– Sureshchandra Jarugula Sep 12 '16 at 12:59
sed -n '/*************Encrypted String***********/,/********************************************/p' $file is this works, i tryed but it didn't work
– Sureshchandra Jarugula Sep 12 '16 at 13:06