build-script.pl
来自「Libgist is an implementation of the Gene」· PL 代码 · 共 26 行
PL
26 行
#!/usr/bin/perl($ENV{LIBGISTHOME}) || die "runtests: must set LIBGISTHOME \n";$ENV{PATH} = "$LIBGISTHOME/src/cmdline:" . $ENV{PATH};open(GISTCMD, "| gistcmdline ") || die "\t Error in running gistcmdline.";print GISTCMD "set echo 0 \n" || die "Error turning off echo.";print GISTCMD "create rt-2-uni rt_point_ext 2d-uni-40000 1.0 \n" || die "Error creating rt-2-uni.";print GISTCMD "create rt-2-clust rt_point_ext 2d-clust-2500 1.0 \n" || die "Error creating rt-2-clust.";print GISTCMD "create rs-2-clust rstar_point_ext 2d-clust-2500 1.0 \n" || die "Error creating rt-2-clust.";print GISTCMD "quit \n" || die "Error quitting.";close(GISTCMD);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?