You can escape the pipe and put the pattern in quotes: grep "aaa\|bbb". or use -E : grep -E "aaa|bbb". or grep -E aaa\|bbb.
確定! 回上一頁