码迷,mamicode.com
首页 > 系统相关 > 详细

linux命令参考:Parallel教程

时间:2014-11-15 18:19:13      阅读:291      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   ar   使用   sp   for   div   on   

准备

  • 安装:
(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也是退出)。

本文地址

linux命令参考:Parallel教程

标签:blog   http   io   ar   使用   sp   for   div   on   

原文地址:http://www.cnblogs.com/dxm2025/p/4099561.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!