发布时间:2019-10-08 10:14:29
https://blog.csdn.net/pansaky/article/details/86599280/*usage: cc mem.c -o mem.out 后 使用./mem.out 100 & 消耗对应数字MB单位的内存,释放时杀掉对应进程即可*/#include <stdlib.h>#include <stdio.h>#include <unistd.h> #define UNIT (1024*1024) int main(int argc, char *argv[]){ .........【阅读全文】
发布时间:2017-05-09 13:00:06
awk '$1=tolower($1) { print $0}' filename......【阅读全文】
发布时间:2014-03-13 15:07:19
从大名鼎鼎的abs上看到的例子 8-2. 使用算术操作符 1 #!/bin/bash 2 # 使用10种不同的方法计数到11. 3 4 n=1; echo -n "$n " 5 6 let "n = $n + 1" # let "n = n + 1" 也可以. 7 echo -n "$n " 8.........【阅读全文】