Chinaunix首页 | 论坛 | 博客
  • 博客访问: 443730
  • 博文数量: 138
  • 博客积分: 4114
  • 博客等级: 上校
  • 技术积分: 1341
  • 用 户 组: 普通用户
  • 注册时间: 2007-10-14 20:41
文章分类

全部博文(138)

文章存档

2014年(1)

2013年(2)

2012年(78)

2011年(13)

2010年(34)

2009年(10)

我的朋友

分类: LINUX

2012-08-06 15:23:07

编译本目录下得一个java文件的脚本

  1. #!/bin/bash
  2. #

  3. function usage()
  4. {
  5. echo "parameter error "
  6. echo "$0 file"
  7. echo "file is the java source code you want to compile and run"
  8. exit 1;
  9. }

  10. postfix=`echo "$1" | awk -F . '{print $2}'`


  11. # if the parameter is not enough
  12. # or not in the form of "*.java"
  13. # then show the usage
  14. if [ $# != 1 -o "$postfix" != "java" ]
  15. then
  16. usage
  17. fi

  18. cur_dir=`pwd`
  19. file_name=$1
  20. a=${file_name%.*}
  21. javac $file_name -d $cur_dir

  22. if [ "$?"=="0" ]
  23. then
  24. java $a
  25. else
  26. echo "compile failed!"
  27. fi
阅读(871) | 评论(0) | 转发(1) |
给主人留下些什么吧!~~