首页 > 代码库 > linux命令参考:Parallel教程

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 lsbasic: 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 lsfailed 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也是退出)。

本文地址

  • http://automationtesting.sinaapp.com/blog/linux_cmd_ulimit
  • 本站地址:python自动化测试 http://automationtesting.sinaapp.com 联系方式 飞信 372818219 飞信软件测试自动化测试及python群87531018 python开发自动化测试qq群113938272和开发测试qq群6089740 微博
  • 关于评论:禁止非登录用户评论,可以使用用户名test密码test登录后评论,评论请尽可能留下联系方式,多谢!
  • 相关文章推荐:
  • Linux用户管理命令(useradd、adduser)
  • Linux重启命令有哪些?linux重启命令大全
  • linux finger命令用法举例
  • 本文来自:爱好Linux技术网
  • 本文链接:http://www.ahlinux.com/start/cmd/6952.html

linux命令参考:Parallel教程