?? getver.awk
字號:
# SCCSID @(#)getver.awk 1.1 11/24/97## Get versions of all files used to make current target#BEGIN { printf("#\n# Copyright 1996, ESS Technology, Inc.\n"); printf("# SCCSID %%%s%% %%%s%%\n#\n", "W", "G");}{ tmp = index($0, "@(#)"); # Position of @(#) meat = substr($0, tmp, length($0) - tmp); # @(#) to the end of line split(meat, fields); # Split the line into fields filename = substr(fields[1], 5, length(fields[1]) - 4); version = fields[2]; if (index(version, ".") != 0) # Ignore those without version printf("sccs get -r%s %s\n", version, filename);}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -