Timeline for How to match case insensitive patterns with ls?
Current License: CC BY-SA 3.0
15 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Aug 9, 2018 at 17:06 | comment | added | Kusalananda♦ | @TimothyGu No, there is not. | |
| Nov 13, 2017 at 10:59 | comment | added | EnzoR | Jfg956's answer is the right one (next one). Why changing the shell behaviour when you have a regexp for that? | |
| Feb 25, 2016 at 15:35 | history | edited | Stéphane Chazelas | CC BY-SA 3.0 | added yash |
| May 29, 2015 at 11:12 | history | edited | polemon | CC BY-SA 3.0 | deleted 3 characters in body |
| May 28, 2015 at 19:12 | comment | added | Reza Sanaie | Excellent solution, I can't believe I hadn't come across shopt command in the last 15 yrs of using bash! | |
| Nov 21, 2014 at 16:01 | comment | added | Timothy Gu | So there isn't any portable ways for this in POSIX or SUS or something like that (except for [aA][bB][cC])? | |
| S Aug 3, 2014 at 18:50 | history | suggested | Cristian Ciupitu | CC BY-SA 3.0 | added links to documentation |
| Aug 3, 2014 at 18:46 | review | Suggested edits | |||
| S Aug 3, 2014 at 18:50 | |||||
| Oct 18, 2012 at 13:25 | vote | accept | mtk | ||
| Sep 21, 2012 at 19:19 | comment | added | ruakh | @mtk: To set an option, you use shopt -s; to unset it, you use shopt -u. Alternatively, you can wrap everything in a subshell by using ( ) so that the setting doesn't affect the parent shell: (shopt -s nocaseglob ; ls *abc*). | |
| Sep 21, 2012 at 17:11 | vote | accept | mtk | ||
| Oct 18, 2012 at 13:25 | |||||
| Sep 21, 2012 at 17:11 | comment | added | mtk | In bash, how to reset to original setting, If I use shport -s nocaseglob ? | |
| S Sep 21, 2012 at 8:57 | history | suggested | Stéphane Chazelas | CC BY-SA 3.0 | alternative globbing syntax in zsh and ksh93 |
| Sep 21, 2012 at 8:53 | review | Suggested edits | |||
| S Sep 21, 2012 at 8:57 | |||||
| Sep 21, 2012 at 7:20 | history | answered | polemon | CC BY-SA 3.0 |