Chinaunix首页 | 论坛 | 博客
  • 博客访问: 534301
  • 博文数量: 103
  • 博客积分: 2024
  • 博客等级: 上尉
  • 技术积分: 1294
  • 用 户 组: 普通用户
  • 注册时间: 2010-01-08 21:17
文章分类

全部博文(103)

文章存档

2012年(2)

2011年(21)

2010年(80)

分类: LINUX

2010-08-14 22:13:36

每次写python文件都要 #!/usr/bin/env python烦不烦啊,想起公司那个rhts-create就模仿写了一个,很简单,考虑的东西似乎没那么简单~

#!/bin/sh

if test $# -eq 0
then
    file="test.py"
else
    file="$1"
fi

if test -f "$file"
then
    echo "$file exist,rename to $file.$$"
    file="$file.$$"
fi

(touch $file && chmod +x $file ) || exit 1

echo "#!/usr/bin/env python"  >> $file
echo "#func:" "$file" >>$file
echo "#author: sandflee.fang@gmail.com" >> $file

阅读(1986) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~