易截截图软件、单文件、免安装、纯绿色、仅160KB

常用 Unix/Linux shell 命令

关键字: shell


转自:http://fanqiang.chinaunix.net/program/code/2006-06-27/4695.shtml
Ruby代码
删除 core 文件  
  
# find ~ -name core -exec file {} \; -exec rm -i {} \;
  
  
查看使用文件的进程  
  
# fuser -u /usr/my_application/foo
  
  
搜索字符串  
  
#grep "hello world" `find ./ -name "*" -print -exec file {} \; |grep text | cut -d ':' -f 1`
  
  
目录  
  
#alias dir='ls -Lla|grep ^d'
  
  
输出 IP 地址  
  
#ifconfig | grep "inet addr" | grep -v "127.0.0.1" | awk '{print $2;}' | awk -F':' '{print $2;}'
  
  
按文件长度排序  
  
#ls -l | grep ^- | sort -nr -k 5 | more
  
  
#ls -lR | grep ^- | sort -nr -k 5 | more
  
  
二进制文件中的可打印字符  
  
# strings name of binary file
  
  
一个月的最后一个星期天执行任务:  
  
18 * * * 0 [`date "+%d"
` -gt 24] && /path/to/script  
  
修改扩展名:  
  
# for f in *.abc; do mv $f `basename $f .abc`.def ; done
  
  
查看硬盘情况:(Solaris)  
  
# iostat -En
 &


相关文档:

实战Linux Bluetooth编程(三) HCI层编程

1. HCI层协议概述:
HCI提供一套统一的方法来访问Bluetooth底层。如图所示:
从图上可以看出,Host Controller Interface(HCI)  就是用来沟通Host和Module。Host通常就是PC, Module则是以各种物理连接形式(USB,serial,pc-card等)连接到PC上的bluetooth Dongle。
在Host这一端:application,SDP,L2cap等协议 ......

linux 中的struct resource

linux对挂接在4G总线空间上的设备实体的管理方式 -- struct resource /usr/src/linux-2.6.21.5/include/linux/ioport.h struct resource { resource_size_t start; resource_size_t end; const char *name; unsigned long flags; struct resource *parent, *sibling, *child; }; struct resource_list { struct resource_li ......

Linux下内存释放问题相关知识


细心的朋友会注意到,当你在Linux下频繁存取文件后,物理内存会很快被用光,当程序结束后,内存不会被正常释放,而是一直作为caching.这个问题,貌似有不少人在问,不过都没有看到有什么很好解决的办法.那么我来谈谈这个问题.
先来说说free命令
[root@server ~]# free -m
total used free shared buffers cached
Mem: 249 16 ......

linux下挂载光驱、软驱、U盘


mount    -t    iso9660    /dev/cdrom    /mnt/cdrom        挂光驱   
mount    -t    vfat    /dev/fd0    /mnt/floppy  & ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号