I have this command:
on_named_pipe_msg(){
}
export -f on_named_pipe_msg
cat "ql_named_pipe" | xargs on_named_pipe_msg &
but I get this error:
xargs: on_named_pipe_msg: No such file or directory
anyone know how I can call a bash function from the results of calling cat on a named pipe?