linux命令参考:Parallel教程

准备

  • 安装:
(wget -O - pi.dk/3 || curl pi.dk/3/) | bash
  • 查看手册:man parallel
  • 生成abc-file:parallel -k echo ::: A B C > abc-file
  • 生成def-file:parallel -k echo ::: D E F > def-file
  • 生成abc0-file:python -c ‘print "A\0B\0C\0"‘ > abc0-file
  • 生成abc_-file: python -c ‘print "A_B_C_"‘ > abc_-file
  • 生成tsv-file.tsv:python -c ‘print "f1\tf2\nA\tB\nC\tD\n"‘ > tsv-file.tsv
  • 生成num30000:python -c ‘for i in range(1,30001): print i‘ > num30000

常用操作

  • 启动:tmux
  • 退出:exit
  • 查看会话:tmux list-sessions(简写tmux ls)
    #tmux ls
    basic: 1 windows (created Mon Oct 20 11:24:41 2014) [171x47]
    second_session: 1 windows (created Mon Oct 20 11:31:30 2014) [171x47]
    #tmux ls
    failed to connect to server

注意"failed to connect to server"是表示当前没有会话。

  • detach: CTRL - b: d
  • attach: tmux attach (后面可选添加会话名,如果只有一个会话,不需要添加)。
  • 创建会话:tmux new,比如:
$ tmux new -s basic
$ tmux new -s second_session -d
  • 杀死会话:tmux kill-session -t session-name (注意tmux中敲exit也是退出)。

本文地址

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。