To delete all FIFOs in the current directory and all sub-folders use
find . -type p -delete
To delete FIFOs only in the current directory use
find . -maxdepth 1 -type p -delete
To delete all FIFOs in the current directory and all sub-folders use
find . -type p -delete
To delete FIFOs only in the current directory use
find . -maxdepth 1 -type p -delete