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