We have this sript in ksh file.
FIFO_FILE=${FOLDER}/fifo_FIFOFILE.$$
mkfifo $FIFO_FILE
Sometimes it's working. Sometimes it's not, and there is no error or warning, just a log
mkfifo: must specify file
Usage: mkfifo [-m mode] file ...
I search on internet but not found any thing about the mkfifo message "must specify file". And it sure do not have that message in our code base. I'm not sure it's a warning or anything. Do anyone have anything (document,...) regards that mkfifo message?
I found some info about mkfifo here enter link description here but nothing about error message.
EDIT1: We have many script before that script that run ok. So, it not possible that FOLDER have space. Does anyone have any resource involve message "mkfifo: must specify file" of mkfifo?