Perguntas com a marcação «regular-expression»

2
operador grep +

De acordo com o manual grep: * The preceding item will be matched zero or more times. + The preceding item will be matched one or more times. Vamos testar echo 'agb' | grep 'a.*b' # returns agb echo 'agb' | grep 'a.+b' # returns nothing Por que + não corresponde a três gs? De acordo com o...