摘要: --------------纯输出----------------1.sh#!/bin/shecho -e "Hello!world!\a\n"exit 0--------------获得用户输入----------------2.sh#!/bin/shread -p "Please input your name:" nameecho -e "\nHello!$name"exit 0--------------日期计算昨天今天明天----------------3.sh#!/bin/shyesterday=$(date --date 阅读全文
posted @ 2013-09-03 22:50 逆火狂飙 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 当x>0时,求(x^2+3x+6)/(x+1)的最小值。使用基本不等式、判别式和Canvas图像法分别探索。 阅读全文
posted @ 2013-09-03 17:16 逆火狂飙 阅读(246) 评论(0) 推荐(0) 编辑
摘要: # 列出所有包括a@b.c内容的xml文件 find / -type f -name "*.xml" | xargs grep "a@b.c" # 列出/opt/apache-tomcat-6.0.32下包括a@b.c的文件find /opt/apache-tomcat-6.0.32 -type f 阅读全文
posted @ 2013-09-03 11:36 逆火狂飙 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 用Html5/Canvas绘制红色纵横田字结。 阅读全文
posted @ 2013-09-02 23:22 逆火狂飙 阅读(8) 评论(0) 推荐(0) 编辑
摘要: Linux放火墙配置文件位于/etc/sysconfig/iptables 内容示例如下: # Firewall configuration written by system-config-firewall# Manual customization of this file is not rec 阅读全文
posted @ 2013-09-02 11:23 逆火狂飙 阅读(212) 评论(0) 推荐(0) 编辑
摘要: libaio-0.3.105-2.i386.rpm是安装MySql必须的包,可以从这里下载:http://pan.baidu.com/share/link?shareid=2348086735&uk=34256769 64位版本从这里下载:http://pan.baidu.com/share/lin 阅读全文
posted @ 2013-09-01 15:34 逆火狂飙 阅读(3441) 评论(0) 推荐(0) 编辑
摘要: 本机操作系统:Linux 2.6.23.1-42.fc8 #1 SMP Tue Oct 30 13:55:12 EDT 2007 i686 i686 i386 GNU/Linux 在本机上准备安装MySQL版本:5.6.13 (下载:http://pan.baidu.com/share/link?s 阅读全文
posted @ 2013-08-31 08:27 逆火狂飙 阅读(384) 评论(1) 推荐(0) 编辑
摘要: 本地Apche httpd2.4.6(http://pan.baidu.com/share/link?shareid=4003375081&uk=34256769)和Tomcat7.0.42是如何安装的,请参考前面的文章。 下面是具体整合的步骤。 首先需要得到mod_jk.so,它是apache到t 阅读全文
posted @ 2013-08-30 23:21 逆火狂飙 阅读(2557) 评论(2) 推荐(0) 编辑
摘要: Ant在Win上安装很简单,解压拷贝+设置Ant_Home,在Linux上差不多也是这两步。 首先下载apache-ant-1.9.2-bin.tar.gz。 然后解压tar xvzf apache-ant-1.9.2-bin.tar.gz,然后就会得到目录apache-ant-1.9.2。 [ro 阅读全文
posted @ 2013-08-30 22:02 逆火狂飙 阅读(551) 评论(0) 推荐(0) 编辑
摘要: 分别用纸上的判别式法和Canvas图像法求函数 y=(x^2-2x-3)/(2x^2+2x+1) 的极值点。 阅读全文
posted @ 2013-08-30 15:48 逆火狂飙 阅读(195) 评论(0) 推荐(0) 编辑
生当作人杰 死亦为鬼雄 至今思项羽 不肯过江东