ignore case search in vi editor
Today tip
which “SED” command you can use s/[reg pattern]/i for search / replace ignore case but when you want to search on vi you have to use \c on any position of string
example use vi editor open mysql dump file and search “InnoDB”
/innodb/i <--- wrong
/\cinnodb <--- correct










