You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wasn't able to get only a few data collections to show on web interface.. I look around and found some examples of changing the _parseAndPrint.. but those didnt work I made a slight modification to othere people solutions.. I am also using node.
Commented out code __parseAndPrint() {
while read data; do
$ECHO -n "$data" | $SED -r 's/\//g' | $TR -d "\n";
done;
}_
New code:
_parseAndPrint() {
while read data; do
$ECHO -n "$data"
done;
}
Looks like everything is now outputing data.
Hope this helps.
Red.
The text was updated successfully, but these errors were encountered:
Hello!
First time installing and running...
I wasn't able to get only a few data collections to show on web interface.. I look around and found some examples of changing the _parseAndPrint.. but those didnt work I made a slight modification to othere people solutions.. I am also using node.
Commented out code
__parseAndPrint() {
while read data; do
$ECHO -n "$data" | $SED -r 's/\//g' | $TR -d "\n";
done;
}_
New code:
_parseAndPrint() {
while read data; do
$ECHO -n "$data"
done;
}
Looks like everything is now outputing data.
Hope this helps.
Red.
The text was updated successfully, but these errors were encountered: