📄 lf.cc
字号:
/* Driver program for directory listing facility. *//* Type the -h option for program usage information. */#include "option.h"#include "screen.h"#include "directory.h"/* Manages program options, globally visible to other modules. */Option_Handler option;/* Initializes the screen object. */Screen_Handler screen;/* Set the program options and turn over the dirty work to the main directory handling module. */intmain (int argc, char *argv[]){ option (argc, argv); Directory_Handler files; files.print (); return 0;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -