由买买提看人间百态

topics

全部话题 - 话题: tmp0
(共0页)
A******u
发帖数: 1279
1
这个算编程吗?
#!/bin/bash
# Author: Amorphou
# Oct 2010
# grepfwd $pattern $infile $linenumber1 $linenumber2 $outfile
# for each occurence of a pattern, grep forward by $linenumbers
# Without a 5th arg, save to files fwdgrep.$int by default
# defaults
((linenumber1=0))
((linenumber2=0))
FILES="fwdgrep"
SED=/bin/sed
if [ "$#" -lt "2" -o "$#" -gt "5" ]
then
echo "USAGE: $0 pattern infile linenumber1 linenumber2 [optional]outfile"
exit 0
fi
if [ "$#" -ge "3" ]
then
if echo "$3" | grep "^[0-9]*$"... 阅读全帖
c******n
发帖数: 4965
2
eclipse EE has built in web development kit,
so I can create a "dynamic web project", and it will compile and create
the .class files. I can create a "Server" from file menu, pointing to my
tomcat setup. then I can add my web project to the tomcat Server, and
start it in eclipse. everything is integrated.
but the problem is, when eclipse EE deploys the web app into tomcat, it
does not include the recursive dependencies, as is handled by ivy/maven,
although I already pulled those deps successfull... 阅读全帖
(共0页)