#include <string.h> char *strpbrk(const char *s1, const char *set);
This function finds the first character in s1 that matches any character in set.
A pointer to the first match, or NULL
if none are found.
ANSI, POSIX
if (strpbrk(command, "<>|")) do_redirection();
Go to the first, previous, next, last section, table of contents.