├── Makefile ├── README.md ├── exts ├── chinese_search.py ├── chinese_search.pyc ├── main.dic ├── smallseg.py ├── smallseg.pyc ├── suffix.dic ├── zh.py └── zh.pyc ├── make.bat ├── requirements.txt └── source ├── conf.py ├── index.rst ├── myshell-note.md ├── myshell-note.rst ├── shell-01-基础知识.md ├── shell-01-基础知识.rst ├── shell-02-字符串与数组.md ├── shell-02-字符串与数组.rst ├── shell-03-运算符.md ├── shell-03-运算符.rst ├── shell-04-流程控制.md ├── shell-04-流程控制.rst ├── shell-05-函数.md ├── shell-05-函数.rst ├── shell-06-正则表达式.md ├── shell-06-正则表达式.rst ├── shell-07-三剑客-grep.md ├── shell-07-三剑客-grep.rst ├── shell-08-三剑客-sed.md ├── shell-08-三剑客-sed.rst ├── shell-09-三剑客-awk.md ├── shell-09-三剑客-awk.rst ├── shell-10-杂项.md ├── shell-10-杂项.rst └── shell-demo.png /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/README.md -------------------------------------------------------------------------------- /exts/chinese_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/exts/chinese_search.py -------------------------------------------------------------------------------- /exts/chinese_search.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/exts/chinese_search.pyc -------------------------------------------------------------------------------- /exts/main.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/exts/main.dic -------------------------------------------------------------------------------- /exts/smallseg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/exts/smallseg.py -------------------------------------------------------------------------------- /exts/smallseg.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/exts/smallseg.pyc -------------------------------------------------------------------------------- /exts/suffix.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/exts/suffix.dic -------------------------------------------------------------------------------- /exts/zh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/exts/zh.py -------------------------------------------------------------------------------- /exts/zh.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/exts/zh.pyc -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/make.bat -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/requirements.txt -------------------------------------------------------------------------------- /source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/source/conf.py -------------------------------------------------------------------------------- /source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/source/index.rst -------------------------------------------------------------------------------- /source/myshell-note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/source/myshell-note.md -------------------------------------------------------------------------------- /source/myshell-note.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/source/myshell-note.rst -------------------------------------------------------------------------------- /source/shell-01-基础知识.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/source/shell-01-基础知识.md -------------------------------------------------------------------------------- /source/shell-01-基础知识.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/source/shell-01-基础知识.rst -------------------------------------------------------------------------------- /source/shell-02-字符串与数组.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/source/shell-02-字符串与数组.md -------------------------------------------------------------------------------- /source/shell-02-字符串与数组.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/source/shell-02-字符串与数组.rst -------------------------------------------------------------------------------- /source/shell-03-运算符.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/source/shell-03-运算符.md -------------------------------------------------------------------------------- /source/shell-03-运算符.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/source/shell-03-运算符.rst -------------------------------------------------------------------------------- /source/shell-04-流程控制.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/source/shell-04-流程控制.md -------------------------------------------------------------------------------- /source/shell-04-流程控制.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/source/shell-04-流程控制.rst -------------------------------------------------------------------------------- /source/shell-05-函数.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/source/shell-05-函数.md -------------------------------------------------------------------------------- /source/shell-05-函数.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/source/shell-05-函数.rst -------------------------------------------------------------------------------- /source/shell-06-正则表达式.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/source/shell-06-正则表达式.md -------------------------------------------------------------------------------- /source/shell-06-正则表达式.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/source/shell-06-正则表达式.rst -------------------------------------------------------------------------------- /source/shell-07-三剑客-grep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/source/shell-07-三剑客-grep.md -------------------------------------------------------------------------------- /source/shell-07-三剑客-grep.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/source/shell-07-三剑客-grep.rst -------------------------------------------------------------------------------- /source/shell-08-三剑客-sed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/source/shell-08-三剑客-sed.md -------------------------------------------------------------------------------- /source/shell-08-三剑客-sed.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/source/shell-08-三剑客-sed.rst -------------------------------------------------------------------------------- /source/shell-09-三剑客-awk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/source/shell-09-三剑客-awk.md -------------------------------------------------------------------------------- /source/shell-09-三剑客-awk.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/source/shell-09-三剑客-awk.rst -------------------------------------------------------------------------------- /source/shell-10-杂项.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/source/shell-10-杂项.md -------------------------------------------------------------------------------- /source/shell-10-杂项.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/source/shell-10-杂项.rst -------------------------------------------------------------------------------- /source/shell-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overnote/over-shell/HEAD/source/shell-demo.png --------------------------------------------------------------------------------