I have a NodeJS script that 'exec's a child process to capture cat dump of a file:
var exec = require('child_process').exec;
var result = '';
var child = exec('./scripts/first.sh',function(err, stdout, stderr) {
result = stdout.split("=");
});
If in case the file is not there I would take dump of a different file:
var result = '';
var child = exec('./scripts/first.sh',function(err, stdout, stderr) {
result = stdout.split("=");
if(stdout.indexOf('No such file or directory') != -1){
var child = exec('./scripts/second.sh', function(err, stdout, stderr) {
result = stdout.split("=");
});
});
Finally I log the value of result variable:
console.log(result);
The files would have data like mentioned below:
line_1 = 7888
line_2 = 8998
line_3 = 9090
line_4 = 9097
I need to parse and extract values of line_1 and line_3?
The result variable does not shows any value. My idea was to get the stdout data in a string variable and use some search mechanism.
Though I am not sure of the approach as I am not much experience on JS / NodeJS.
==EDIT==
Please find a replica of the function I have written.
var exec = require('child_process').exec;
function getdetail() {
var result = '';
var child = exec('./scripts/first.sh', function(err, stdout, stderr) {
if(stdout.indexOf('No such file or directory') != -1){
var child = exec('./scripts/second.sh',function(err, stdout, stderr) {
result = stdout.toString().split("=");
console.log(result);
});
}
else
{
result = stdout.toString().split("=");
console.log(result);
}
});
}
The tostring() on stdout stream object did the trick but I get console logs as mentioned below:
[ 'spawn ssh -o UserKnownHostsFile',
'/dev/null -o StrictHostKeyChecking',
'no user@www.mybox.com cat ver.txt\r\nWarning: Permanently added \'www.mybox.com,XX.XX.XX.XX\' (RSA) to the list of known hosts.\r\r\nuser@www.mybox.com\'s password: \r\line_1',
'9400\r\nline_2',
'3508\r\nline_3',
'77f3\r\nline_4',
'/tmp\r\nline_5',
'/tmp/ramdisk/\r\nline_5',
'77f3\r\n' ]
How can I extract value of line_1 and line_3?