实现shell脚本模板,自动生成开头注释信息

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实现shell脚本模板,自动生成开头注释信息相关的知识,希望对你有一定的参考价值。

建议在用户家目录创建.vimrc文件:
文件格式如下:

set ignorecase
set autoindent
set paste
autocmd BufNewFile *.sh exec ":.call SetTitle()"
func SetTitle()
if expand("%:e") == ‘sh‘
call setline(1,"#!/bin/bash")
call setline(2,"#***********************************************")
call setline(3,"#Author:        Tom")
call setline(4,"#Mail:          123456789@qq.com")
call setline(5,"#Version:       1.0")
call setline(6,"#Date:          ".strftime("%Y-%m-%d"))
call setline(7,"#FileName:      ".expand("%"))
call setline(8,"#Description:   The test script")
call setline(9,"#***********************************************")
call setline(10,"")
endif
endfunc
autocmd BufNewFile * normal G

以上是关于实现shell脚本模板,自动生成开头注释信息的主要内容,如果未能解决你的问题,请参考以下文章

shell脚本开发基本规范及习惯

shell脚本的基础常识及yum仓库的自动搭建

今天介绍一个渐变的方法,在shell里面自动生成注释简介

shell脚本的基础知识

Shell脚本入门到深入教程:快速入门

Shell注释