On Thursday, April 6, 2017 at 12:55:41 AM UTC+2, Gregory Ewing wrote:
> Anssi Saari wrote:
> > Bash manual explicitly states command substition (the $(...) structure)
> > replaces the command with the standard *output* of the command.
>
> Another problem is your use of '&' here:
>
> sensor_da
On Tuesday, April 4, 2017 at 7:58:56 PM UTC+2, justin walters wrote:
> On Tue, Apr 4, 2017 at 10:39 AM, Venkatachalam Srinivasan <
> venkatachalam...@gmail.com> wrote:
>
> > Hi,
> >
> > Thanks for the answer. I need bash for connecting data exchange between
&
On Wednesday, April 5, 2017 at 2:38:00 PM UTC+2, Anssi Saari wrote:
> venkatachalam...@gmail.com writes:
>
> > For example, the data is printed in
> > execute_sensor_process.py as follows:
> >
> > print >>sys.stderr,sens_data
> >
> > By printing the data onto sys.stderr and assigning a return vari
ther analysis. I am not getting the data returned
> > from the python script on to the bash variable.
> >
> > Can someone help me to understand why the code is not working? I tried
> > other approaches of function call such as
> >
> >
> > sensor_data=$`
someone help me to understand why the code is not working? I tried
> > other approaches of function call such as
>
> You haven't given us enough of the code to really answer.
>
> > sensor_data=$`python execute_sensor_process.py` &
> >
> > python execute_sensor