当前位置: 技术问答>linux和unix
怎样在linux命令行同时运行多个相同程序
来源: 互联网 发布时间:2017-02-03
本文导语: 我想同时运行多个相同的程序,来模拟一下CPU的繁忙情况。 例如:cpu_bound01.c cpu_bound02.c cpu_bound03.c 这三个程序。 用gcc 编译三个程序后: cpu_bound01 cpu_bound02 cpu_bound03 可执行文件名。 输入什么命令才能...
我想同时运行多个相同的程序,来模拟一下CPU的繁忙情况。
例如:cpu_bound01.c cpu_bound02.c cpu_bound03.c 这三个程序。
用gcc 编译三个程序后: cpu_bound01 cpu_bound02 cpu_bound03 可执行文件名。
输入什么命令才能同时运行这三个程序?!
谢谢
例如:cpu_bound01.c cpu_bound02.c cpu_bound03.c 这三个程序。
用gcc 编译三个程序后: cpu_bound01 cpu_bound02 cpu_bound03 可执行文件名。
输入什么命令才能同时运行这三个程序?!
谢谢
|
写个脚本,都放后台执行
#!/bin/bash/
./cpu_bound01 &
./cpu_bound02 &
./cpu_bound03 &
|
./cpu_bound01 &; ./cpu_bound02 &; ./cpu_bound03 &;
分号分隔 挨个扔后台就行了...