码迷,mamicode.com
首页 > 其他好文 > 详细

shell 生产带有作者信息的基本go源文件

时间:2014-05-27 17:49:29      阅读:283      评论:0      收藏:0      [点我收藏+]

标签:c   a   int   文件   for   file   

#!/bin/bash

# Program to output a go source file with user information

CURRENT_TIME=$(date +"%x %r %Z")
cat << EOF
/*
Author:$USER
CreatedAt:$CURRENT_TIME
*/
package main
import(
"fmt"
)
func main(){
fmt.Println("Hello World!")
}
EOF

shell 生产带有作者信息的基本go源文件,布布扣,bubuko.com

shell 生产带有作者信息的基本go源文件

标签:c   a   int   文件   for   file   

原文地址:http://www.cnblogs.com/ggaaooppeennngg/p/3752865.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!