在Ubuntu下,通过 sudo apt-get install tree 可以使用tree命令,显示文件目录列表,如图所示: 在mac OS X系统下怎么使用呢? 在终端输入: cd $home 进入localhost目录,再输入: vim .bashrc 显示结果如下(点击键盘上的i,进入编辑状态): 在编辑状态下添加以下代码: alias tree="find . -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g'" 按ESC退出编…
官方文档: Apache2 - Mod_bw v0.7 Author : Ivan Barrera A. (Bruce) HomePage : Http://Ivn.cl/apache & http://bwmod.sf.net Release Date : 01-09-2005 Status : Functional. Tested under medium and heavy load. License : Licensed under the Apache Software License…
最近拿到了一个 Dynamic Web Project,我的 Mac 上的 Eclipse 之前没有过这类型的项目,所以导入之后无法正常运行.下面是我记录的如何配置 Eclipse 使之能够运行 Dynamic Web Project. 如果你不确定你是否可以建立 Dynamic Web Project,你可以点 File > New > Other,然后输入关键词搜索,搜索不到则需要安装插件. Dynamic Web Project 首先,点击 Help 中的 Install New Sof…
var empList = from p in customers select new { p.Personnel_ID, p.PersonName }; var empTempList = empList.Distinct().ToList(); Dictionary<string, string> dict = new Dictionary<string, string>(); ) { foreach (var item in empTempList) { dict.Add(…