发布时间:2020-10-12 13:51:12
man 和 --help 区别系统中会有单独的man文件,命令man term等同于less [manpath] /term.x[.gz] //x为1-8中的数,视term而定就是说,如果系统没有安装对应man文件,哪怕term命令完全正常,man term都没结果(同样,只要安装了man文件,哪怕没term命令,也可以得到一大堆东西)。而--help参数将会显示可执.........【阅读全文】
发布时间:2020-09-27 18:44:12
实验:点击(此处)折叠或打开#include #include int main ( void ){ uint64_t udata = 0x123456789ULL; printf("0x%llx\n",.........【阅读全文】
发布时间:2020-09-17 19:18:01
选自: gcc-arm-none-eabi/info/gcc.info点击(此处)折叠或打开* gcc: (gcc). The GNU Compiler Collection. ---"(GNU Tools for ARM Embedded Processors)"2.1 C language============== GCC supports three versions of the C standard, althou.........【阅读全文】
发布时间:2020-09-12 18:29:25
vim 配置 vim启动时,vim的配置文件的加载顺序为:/etc/vimrc || /etc/vim/vimrc -> ~/.vimrc -> [set number]点击(此处)折叠或打开:set all "显示配置选项:set "显示与系统默认值不同的值:help(:help usr_toc "is user ma.........【阅读全文】