Selon Frederick Ros <[EMAIL PROTECTED]>: > Robert Siemer wrote : > | instead if you dont want to work with a real tab character. [:blank:] is > | exactly space and tab. > > Yup. I know this. But what if I want *only* tab characters ? >
With bash we can use escape sequence of bash. $'un caractère tab : \011' <- code ascci base 8 So echo "example..." | grep $'\011' mcoolive.
