Spaces:
Build error
Build error
File size: 190 Bytes
98775da |
1 2 3 4 5 6 7 8 9 10 |
#!/bin/bash
echo "creating the storage folders.."
mkdir -p $WEBTV_VIDEO_STORAGE_PATH
mkdir -p $WEBTV_AUDIO_STORAGE_PATH
echo "create the named pipes.."
mkfifo video.pipe
mkfifo audio.pipe
|