mirror of
https://github.com/eddyem/lectures.git
synced 2025-12-06 02:35:18 +03:00
9 lines
113 B
Bash
9 lines
113 B
Bash
#!/bin/sh
|
|
OUT=1000strings
|
|
|
|
./ex2 1000 > $OUT
|
|
for ((i = 2; i < 5; ++i)); do
|
|
sort -n -k $i $OUT > ${OUT}_$i
|
|
done
|
|
|