[SOLVED] Simple Bash - Open Konsole and keep running original
by pr0xibus from LinuxQuestions.org on (#51HY0)
Morning folks
Probably something really simple, on a simple script.
When the new Konsole starts it will keep the original konsole stuck until I finish the recording from rtl_fm, how can I run the rtl_fm command in another konsole and continue with the demodulating at the same time
Code:#!/bin/bash
#Making FIFO
mkfifo /home/pr0xibus/Documents/MeteorFIFO
#Starting rtl_fm
konsole -e rtl_fm -M raw -s 120000 -f 137.1M -E dc -g 48 -p 57 /home/pr0xibus/Documents/Meteor_FIFO
#Starting Demodulator
meteor_demod -s 120000 /home/pr0xibus/Documents/Meteor_FIFO


Probably something really simple, on a simple script.
When the new Konsole starts it will keep the original konsole stuck until I finish the recording from rtl_fm, how can I run the rtl_fm command in another konsole and continue with the demodulating at the same time
Code:#!/bin/bash
#Making FIFO
mkfifo /home/pr0xibus/Documents/MeteorFIFO
#Starting rtl_fm
konsole -e rtl_fm -M raw -s 120000 -f 137.1M -E dc -g 48 -p 57 /home/pr0xibus/Documents/Meteor_FIFO
#Starting Demodulator
meteor_demod -s 120000 /home/pr0xibus/Documents/Meteor_FIFO