0
我嘗試使用二進制運算符使用regexpression功率,如何使用二進制運算符在bash 4.2
[[ [email protected] =~ "^[email protected]+$" ]]
不要在bash 4.2工作,並在bash 3.2
工作,但這個工作在bash 4.2 (刪除雙引號):
[[ [email protected] =~ ^[email protected]+$ ]]
任何人都可以解釋這一點嗎?
[爲什麼不執行引號刪除\ [\ [... \] \]之間可能的重複?](http://stackoverflow.com/questions/9644663/why-quote-removal-isnt-performed -between) – kev