Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有一堆“同源”sc文件,我需要在每个文件中执行一个特定的命令序列。本质上,我需要这个:
sc
for f in `ls *.sc`; do sc $f <do something>; done
在<do something>中,我想sc在脚本中提供一系列命令。对于初学者,让它类似于,for the cell Z9, assign some text string。手册页没有描述如何做到这一点;在线文学很少,因为sc(不幸的是)没有它(恕我直言)应得的那么受欢迎。
<do something>
for the cell Z9, assign some text string
我更仔细地阅读了文档,并明白可以做这样的事情: sc -v -WA0:D13 myfile.sc. 这将输出到stdinrange 中包含的表A0:D13。
sc -v -WA0:D13 myfile.sc
stdin
A0:D13