used to save my atom setting
- 把所有的图像文件名称放到一个文件里, 一行一个
- 把图像文件名读到一个tcl的列表里 注意tcNames需要是全局变量
set FSIZE_B 100
set gcnt 0
array set tcNames { }
# read out the testcase name fromt he file
proc getTCNames {path} {
global tcNames
提交时出现下面错误
harriszh Sat 14:13@ ~/trunk/vpi$ git push -u origin master
To [email protected]:zhuzhzh/vpiIntro.git
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to '[email protected]:zhuzhzh/vpiIntro.git'
To prevent you from losing history, non-fast-forward updates were rejected
Merge the remote changes before pushing again. See the 'Note about
fast-forwards' section of 'git push --help' for details.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
"io/ioutil" | |
"os" | |
"strings" | |
"github.com/urfave/cli/v2" |