There is file1 and file2.
In file 1 there is a information firstname=abc
and in second file there is firstname=''
.
So the value from firstname file 'abc' have to get in single coat of another files firstname using script.
Asked
Active
Viewed 15 times
0

Walter A
- 19,067
- 2
- 23
- 43
-
1File1 -> Firstname=abc File2 -> Firstname=' ' Expected output File2 -> 'abc' – Pradeep Yawatkar Jan 04 '19 at 07:32
-
You can try something like `https://stackoverflow.com/q/32481877/3220113` using `=` as delimiter. – Walter A Jan 04 '19 at 10:02