How do I search for something in the IBM i IFS file system? The IBM i version of the grep command doesn’t accomplish what you’d expect. Instead you need to do find and pipe it to grep. find . -type f | xargs grep -i Paid