mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-05 19:00:31 -05:00
13 lines
201 B
Bash
Executable file
13 lines
201 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# call n instances of ./bencode_write.native on the same file
|
|
|
|
N=$1
|
|
FILE=$2
|
|
|
|
echo "call script $N times on file $FILE"
|
|
for i in `seq $N` ; do
|
|
./bencode_write.native "$FILE" &
|
|
done
|
|
|
|
wait
|