随笔分类 - Linux
摘要:解决方法: 参考:https://www.jianshu.com/p/d0f55a25486b 1.手动输入命令,保留nohup.out文件多少行 例如保留10000行,可如下操作: log=`tail -n 10000 nohup.out`; echo "$log" > nohup.out 2.写
阅读全文
摘要:转载:https://www.cnblogs.com/samewang/p/4774180.html 什么是gcc / g++ 首先说明:gcc 和 GCC 是两个不同的东西 GCC:GNU Compiler Collection(GUN 编译器集合),它可以编译C、C++、JAVA、Fortran
阅读全文
摘要:Debugging with gdb: https://www.eecs.umich.edu/courses/eecs373/readings/Debugger.pdf http://sourceware.org/gdb/current/onlinedocs/gdb/ 内容较新 gdb概述: UNI
阅读全文
摘要:ifeq-else-endif if-else形式: ifeq(<arg1>,<arg2>) 语句1 else 语句2 endif 如果带多个条件判断,使用下面的形式: ifeq(<arg1>,<arg2>) 语句1 else ifeq(<arg3>,<arg4>) 语句2 else 语句3 end
阅读全文
浙公网安备 33010602011771号