chore: copy files

This commit is contained in:
yazart
2026-05-25 15:00:33 +03:00
parent cc433f50f0
commit e7f8b60115
7 changed files with 366 additions and 6 deletions
Executable
+18
View File
@@ -0,0 +1,18 @@
#!/bin/bash
PIPE_PATH=$1
if [ "${PIPE_PATH}" == "" ]; then
echo "There is no defined path to pipe"
exit 1
fi
rm ${PIPE_PATH}
mkfifo ${PIPE_PATH}
if [ $? -ne 0 ]; then
echo "Can't create pipe"
exit 1
fi