mirror of
https://github.com/tiennm99/HDH.git
synced 2026-06-08 20:13:15 +00:00
7 lines
123 B
Bash
7 lines
123 B
Bash
#!/bin/bash
|
|
echo "Input file:"
|
|
cat input.txt
|
|
echo "Results"
|
|
gcc sched.c queue.c -o sched -lpthread
|
|
cat input.txt | ./sched
|