摘要:
--------------纯输出----------------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 阅读全文
摘要:
当x>0时,求(x^2+3x+6)/(x+1)的最小值。使用基本不等式、判别式和Canvas图像法分别探索。 阅读全文
摘要:
# 列出所有包括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 阅读全文