All Questions
2 questions
3
votes
0
answers
1k
views
How does pipe behave in a cron job script?
I have some data in some files and I am piping the data to a filter using cat.
cat /home/user/data1.bin /home/user/data2.bin |
/home/user/bin/datafilter -f /home/user/output.txt
When I run ...
-1
votes
1
answer
901
views
How to pass cat output as a wget url parameter?
I have a small file containing just a number located at /mnt/1wire/342342342/temperature
I need to create a cron to wget http://myserver.com/myurl?temp= (and here goes that line)
I believe I should ...