├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── av_num.txt ├── bot_commands.txt ├── commands.txt ├── config.example.json ├── fcshell.sh ├── fqcopy_a.sh ├── help ├── MY_FAQ.md └── Manual_README.md ├── images ├── bot.gif ├── chat.jpg ├── chat1.jpg ├── chat2.jpg ├── logo.png ├── main.jpg ├── spead.png └── speader.gif ├── lib ├── command.js ├── editor.js ├── renderer.js ├── terminal.js ├── utils.js └── wizard.js ├── log └── readme.txt ├── myfc_config.ini ├── package.json ├── script ├── bak │ ├── cleardedupe.sh │ ├── installbot.sh │ └── sa改名.sh ├── fbcopy.sh ├── fcheck.sh ├── fcleanup.sh ├── fdedup.sh ├── fpcopy.sh ├── fqcopy.sh ├── fqcopy_a.sh ├── fsa.sh ├── fsingle.sh ├── fsize.sh ├── fsort.sh └── py │ └── test2.1.py └── server.js /.gitignore: -------------------------------------------------------------------------------- 1 | /config.json 2 | node_modules/ 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.wordWrap": "on" 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/README.md -------------------------------------------------------------------------------- /av_num.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/av_num.txt -------------------------------------------------------------------------------- /bot_commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/bot_commands.txt -------------------------------------------------------------------------------- /commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/commands.txt -------------------------------------------------------------------------------- /config.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/config.example.json -------------------------------------------------------------------------------- /fcshell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/fcshell.sh -------------------------------------------------------------------------------- /fqcopy_a.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/fqcopy_a.sh -------------------------------------------------------------------------------- /help/MY_FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/help/MY_FAQ.md -------------------------------------------------------------------------------- /help/Manual_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/help/Manual_README.md -------------------------------------------------------------------------------- /images/bot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/images/bot.gif -------------------------------------------------------------------------------- /images/chat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/images/chat.jpg -------------------------------------------------------------------------------- /images/chat1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/images/chat1.jpg -------------------------------------------------------------------------------- /images/chat2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/images/chat2.jpg -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/images/main.jpg -------------------------------------------------------------------------------- /images/spead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/images/spead.png -------------------------------------------------------------------------------- /images/speader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/images/speader.gif -------------------------------------------------------------------------------- /lib/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/lib/command.js -------------------------------------------------------------------------------- /lib/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/lib/editor.js -------------------------------------------------------------------------------- /lib/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/lib/renderer.js -------------------------------------------------------------------------------- /lib/terminal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/lib/terminal.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/lib/utils.js -------------------------------------------------------------------------------- /lib/wizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/lib/wizard.js -------------------------------------------------------------------------------- /log/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/log/readme.txt -------------------------------------------------------------------------------- /myfc_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/myfc_config.ini -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/package.json -------------------------------------------------------------------------------- /script/bak/cleardedupe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/script/bak/cleardedupe.sh -------------------------------------------------------------------------------- /script/bak/installbot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/script/bak/installbot.sh -------------------------------------------------------------------------------- /script/bak/sa改名.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/script/bak/sa改名.sh -------------------------------------------------------------------------------- /script/fbcopy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/script/fbcopy.sh -------------------------------------------------------------------------------- /script/fcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/script/fcheck.sh -------------------------------------------------------------------------------- /script/fcleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/script/fcleanup.sh -------------------------------------------------------------------------------- /script/fdedup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/script/fdedup.sh -------------------------------------------------------------------------------- /script/fpcopy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/script/fpcopy.sh -------------------------------------------------------------------------------- /script/fqcopy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/script/fqcopy.sh -------------------------------------------------------------------------------- /script/fqcopy_a.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/script/fqcopy_a.sh -------------------------------------------------------------------------------- /script/fsa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/script/fsa.sh -------------------------------------------------------------------------------- /script/fsingle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/script/fsingle.sh -------------------------------------------------------------------------------- /script/fsize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/script/fsize.sh -------------------------------------------------------------------------------- /script/fsort.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/script/fsort.sh -------------------------------------------------------------------------------- /script/py/test2.1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/script/py/test2.1.py -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/cg_shellbot/HEAD/server.js --------------------------------------------------------------------------------