11 lines
110 B
Bash
11 lines
110 B
Bash
|
#! /bin/sh -e
|
||
|
|
||
|
cd /incoming
|
||
|
|
||
|
mkdir -p audio video
|
||
|
|
||
|
nice /scripts/reader.sh &
|
||
|
nice /scripts/encoder.sh &
|
||
|
|
||
|
wait
|