Skip to content

Let ls command omit case sensitive characters

如何让ls命令忽略大小写?

bash

### switch off case sensitive mode
shopt -s nocaseglob

### switch on case sensitive mode (default)
shopt -u nocaseglob

### help shopt
help shopt

zsh

### switch on case sensitive mode
unsetopt CASE_GLOB

### switch off case sensitive mode (default)
setopt CASE_GLOB

Disclaimer
  1. License under CC BY-NC 4.0
  2. Copyright issue feedback me#imzye.me, replace # with @
  3. Not all the commands and scripts are tested in production environment, use at your own risk
  4. No privacy information is collected here
Try iOS App