ChinaUnix.net
相关文章推荐:

plugin.window.find

plugin 1. for me a plugin in very much like a kernel module, can be complied into .so format(not .ko), and .so is a dll file.(a example of this is in /qwt-5.0.2/designer/plugin/designer/….so), or be compiled together with the main program(quit like a driver, ah?!) 2. in qt assitant/plugin howto, they lists out several kinds of plugins: database driver, many widgets together as a depe...

by happypeter - Linux文档专区 - 2008-04-12 08:14:31 阅读(449) 回复(0)

相关讨论

bufexplorer CCTree CRefVim cvim Engspchk EnhCommentify Mark minibufexpl NERD tree project SearchComplete SuperTab vcscommand TabBar taglist 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/58341/showart_1809971.html

by kelvin cheung - Linux文档专区 - 2009-02-02 10:58:09 阅读(747) 回复(0)

public class Myplugin implements plugin { public Myplugin() { } public void destroy() { System.out.println("Myplugin is stoping!!!!!!!!!!!!!!!!!!!!!!!!!!"); } public void init(ActionServlet servlet, ModuleConfig config) throws ServletException { System.out.println("myplugin is starin...

by kingkongII - Java文档中心 - 2007-04-29 22:22:00 阅读(625) 回复(0)

public class Myplugin implements plugin { public Myplugin() { } public void destroy() { System.out.println("Myplugin is stoping!!!!!!!!!!!!!!!!!!!!!!!!!!"); } public void init(ActionServlet servlet, ModuleConfig config) throws ServletException { System.out.println("myplugin is staring!!!!!!!!!!!!!!!!!!!!!!!!!!"); 用于系统启动时加载信息 DBManage.context = servlet.getServletCont...

by kingkongII - Java文档中心 - 2007-04-27 12:43:10 阅读(681) 回复(0)

上网搜到说要安装libx11-dev,请问哪里可以下到,哪位大侠给传一个,谢谢

by junecl - Linux系统管理 - 2013-10-24 10:03:35 阅读(1137) 回复(2)

怎么把find到的文件拷贝到新的目录下面,并显示出来呢

by zhentongshu - Shell - 2013-01-10 10:16:02 阅读(1136) 回复(7)

每一种操作系统都是由成千上万个不同种类的文件所组成的。其中有系统本身自带的文件,用户自己的文件,还有共享文件等等。我们有时候经常忘记某份文件放在硬盘中的哪个地方。在微软的windowS操作系统中要查找一份文件是相当简单的事情,只要在桌面上点击“开始”-“搜索”中就能按照各种方式在本地硬盘上,局域网络,甚至在INTERNET上查找各种文件,文档。   可是使用Linux的用户就没有那么幸运了,在Linux上查找某个文件确实是...

by checl1987_EE - Linux文档专区 - 2010-02-05 11:51:11 阅读(775) 回复(0)

我有一个文件夹,里面每天都会生成新的文件,新生成文件分别处于文件夹的子文件夹中,现在要每天去备份里面的更新文件,请问用find命令如何检索,谢谢!

by ly215197 - Linux系统管理 - 2009-08-07 17:37:14 阅读(1194) 回复(3)

  find / -amin -10 # 查找在系统中最后10分钟访问的文件   find / -atime -2 # 查找在系统中最后48小时访问的文件   find / -empty # 查找在系统中为空的文件或者文件夹   find / -group cat # 查找在系统中属于 groupcat的文件   find / -mmin -5 # 查找在系统中最后5分钟里修改过的文件   find / -mtime -1 #查找在系统中最后24小时里修改过的文件   find / -nouser #查找在系统中属于作废用户的文件   find / ...

by gaoshixing - Linux文档专区 - 2009-07-08 11:13:50 阅读(749) 回复(0)

find 用法:find [path...] [expression] 其中path缺省为./当前目录,expression缺省为-print 根据man页的描述,expression分为三部分:options,tests,actions options中包括 -daystart(for -amin,-atime,-cmin,-ctime,-mmin,-mtime)从当天开始计算时间,一般和括号中的参数合用,不过具体用途不明,貌似没有-daystart参数也是从命令执行时开始计算的。 -depth从最子层目录开始搜索 -follow排除symbolic links,等价-noleaf,一...

by alticard - Linux文档专区 - 2008-07-07 10:27:39 阅读(1020) 回复(0)

每一种操作系统都是由成千上万个不同种类的文件所组成的。其中有系统本身自带的文件,用户自己的文件,还有共享文件等等。我们有时候经常忘记某份文件放在硬盘中的哪个地方。在微软的windowS操作系统中要查找一份文件是相当简单的事情,只要在桌面上点击“开始”-“搜索”中就能按照各种方式在本地硬盘上,局域网络,甚至在INTERNET上查找各种文件,文档。 可是使用Linux的用户就没有那么幸运了,在Linux上查找某个文件确实是...

by pyro - Linux文档专区 - 2008-07-02 13:02:40 阅读(478) 回复(0)