11 2017 档案
摘要:shell脚本: 1 #!/bin/sh python需要安装paramiko。 source insight中配置如下,需要将D:\Program Files\Git\bin加入到PATH中(因要直接使用bash) 对应的python脚本: syscode.py
阅读全文
摘要:1. python中VC编译器版本的对应关系 :http://blog.csdn.net/davidsu33/article/details/51507727 地址为http://www.voidspace.org.uk/python/modules.shtml#pycrypto (2) 下载安装e
阅读全文
摘要:$ldd --versionldd (GNU libc) 2.12Copyright (C) 2010 Free Software Foundation, Inc.This is free software; see the source for copying conditions. There
阅读全文
摘要:sudo sysctl -w kernel.core_pattern=/corefiles/core.%p.%e sudo mkdir /corefiles sudo chmod -R 777 /corefiles ulimit -c unlimited
阅读全文
摘要:#!/bin/sh if [ $# -lt 1 ]then work_dir="F:/study/01_work/testProjectA"else work_dir=$1fi #echo "${work_dir}" cd ${work_dir}git add .git status | grep
阅读全文
摘要:stl-views-1.0.3.gdb # # STL GDB evaluators/views/utilities - 1.03## The new GDB commands: # are entirely non instrumental # do not depend on any "inli
阅读全文
摘要:截取文档的第N~M行: awk '{if(NR>3 && NR< 8) {print $0}}' test sed -n '3,1000000p' test 截取文档的第N行直到最后: awk '{if(NR>3) {print $0}}' test 截取文档的后N行: tail -n 100 te
阅读全文
摘要:** 内存 *** 查看系统函数的检测 strace -f -e"brk,mmap,munmap" -p $(pidof AuthServer) ltrace *** ARENA变量 MALLOC_ARENA_MAX=1, hadoop推荐为4 *** dump gdb: dump memory /
阅读全文
浙公网安备 33010602011771号