摘要: /** * 此方法由@Tonton 提供 * http://my.oschina.net/u/918697 * @date 2012-12-12 */function genTree5($items) { foreach ($items as $item) $items[$item['pid']]['son'][$item['id']] = &$items[$item['id']]; return isset($items[0]['son']) ? $items[0]['son'] : ar 阅读全文
posted @ 2013-09-28 15:19 WhoAmMe 阅读(635) 评论(0) 推荐(0) 编辑
摘要: 除了在一个目录结构下查找文件这种基本的操作,你还可以用find命令实现一些实用的操作,使你的命令行之旅更加简易。本文将介绍15种无论是于新手还是老鸟都非常有用的Linux find命令。首先,在你的home目录下面创建下面的空文件,来测试下面的find命令示例。# vim create_sample_files.shtouch MybashProgram.shtouch mycprogram.ctouch MyCProgram.ctouch Program.cmkdir backupcd backuptouch MybashProgram.shtouch mycprogram.ctouch M 阅读全文
posted @ 2013-09-28 11:42 WhoAmMe 阅读(305) 评论(0) 推荐(0) 编辑