不过有个非常重要的需求一直没有解决。就是远程备份。或者说,如何仅仅使用命令行就服务器上的文件上传到云存储上(目前仅仅能完成下载)。另一方面,我现在使用的cyberduck,FE file explorer pro,感觉是用来使用去还是应该考虑尝试命令行工具。(当然cyberduck也是一直没有配置好r2)。
tmux kill-server # 杀死所有进程 tmux ls# 列出一个进程 tmux new -s session_name #新建会话 tmux a -t session_name #进入会话 attach tmux detach #分离会话,也就是让会话进入后台 ctrl b d #上一命令快捷键(毕竟有时候进程在运行) exit#显式的杀死进程
也许最需要记忆的快捷键是C-b ?,这样可以看到帮助菜单。
原始的帮助文档非常有帮助,比如C-b s这个命令,很多中文文档写的是列出会话,感觉是tmux ls的快捷键,可是按照应用内置的文档效果是“Choose a session from a list”,实际使用的效果来看,应用的帮助更加贴切。当然也有不方便的地方,对于mac而言,触控板的操作变成了“上下”,无法滚动浏览信息了。更加复杂的设置也有参考帮助,不过这里感觉可以点到为止,tmux暂时可以作为后台运行的工具就好了,更多的设置未来用到可以再考虑。当然,对于滚动的问题,也许我应该更加熟悉一下more命令也许更好。
sh -c "cat <<EOT > ~/example.gams Sets i canning plants / seattle, san-diego / j markets / new-york, chicago, topeka / ; Parameters a(i) capacity of plant i in cases / seattle 350 san-diego 600 / b(j) demand at market j in cases / new-york 325 chicago 300 topeka 275 / ; Table d(i,j) distance in thousands of miles new-york chicago topeka seattle 2.5 1.7 1.8 san-diego 2.5 1.8 1.4 ; Scalar f freight in dollars per case per thousand miles /90/ ; Parameter c(i,j) transport cost in thousands of dollars per case ; c(i,j) = f * d(i,j) / 1000 ; Variables x(i,j) shipment quantities in cases z total transportation costs in thousands of dollars ; Positive Variable x ; Equations cost define objective function supply(i) observe supply limit at plant i demand(j) satisfy demand at market j ; cost .. z =e= sum((i,j), c(i,j)*x(i,j)) ; supply(i) .. sum(j, x(i,j)) =l= a(i) ; demand(j) .. sum(i, x(i,j)) =g= b(j) ; Model transport /all/ ; Solve transport using lp minimizing z ; Display x.l, x.m ; EOT"
以上是官方例子的模型,在用python调用。
1 2 3 4 5 6 7
from gams import GamsWorkspace import os ws = GamsWorkspace() job = ws.add_job_from_file(os.getcwd() + "/example.gams") job.run() for rec in job.out_db["x"]: print(f"x({rec.key(0)},{rec.key(1)}): level={rec.level} marginal={rec.marginal}")