
CMD
Farmwang
博采众长,兼收并蓄!
展开
-
端口号查看进程
1:netstat -ano|findstr portid OR netstat -ano2:任务管理器 ->detail PID原创 2017-04-18 18:04:35 · 333 阅读 · 0 评论 -
CMD 命令输出保存到TXT文件
1:如果覆盖 file 在命令后面加 >符号 2:如果不覆盖file append 方式在命令后面加 >>原创 2017-04-20 09:58:41 · 11364 阅读 · 0 评论 -
templink
http://guojing.me/linux-kernel-architecture/posts/wait-queue/http://guojing.me/linux-kernel-architecture/tags/#等待队列http://www.science.unitn.it/~fiorella/guidelinux/tlk/node5.html原创 2017-05-07 16:24:26 · 463 阅读 · 0 评论 -
Windows 下查看进程下所有线程
1:首先安装 PSList https://technet.microsoft.com/en-us/sysinternals/bb896682.aspx2:把PSlist 放到 Windows\System32 文件夹下3:执行 PSlist -dmx PID pslist expwould show statistics原创 2017-04-25 11:30:03 · 4206 阅读 · 0 评论 -
linux权限-r-w-代表意思
格式:- r w - r - - r - -第一位表示文件类型。如果是—表示文件,d表示文件夹。。。第2-4表示当前用户对该文件具有的权限 r是读,w是写,x表示可以执行第5-7表示当前用户所在组对该文件/文件夹的权限第8-10表示出了这个组以为的人对该文件的权限其中所有的—都表示没有权限。rwx这个顺序。转载 2017-06-07 08:28:45 · 3139 阅读 · 0 评论 -
readlink命令
readlink命令用来获取一个软链接指向的目的路径。readlink是Linux系统中一个常用工具,主要用来找出符号链接所指向的位置。当一个软链接指向的是一个另外的软链接,而另外一个软链接又指向其他的目标。 这时可以使用-f选项直接获取最终的非软链接的目标。转载 2017-06-12 19:33:59 · 1818 阅读 · 0 评论 -
strace -c
The -c command-line parameter creates a report after the program executes, outlining all of the systemcalls made, and how much time was spent in each call:原创 2017-07-26 23:05:09 · 1673 阅读 · 0 评论 -
netstat -ano >> d:\net.log
netstat -ano >> d:\net.log原创 2018-03-30 17:51:04 · 382 阅读 · 0 评论