This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| for i in {0..3} | |
| do | |
| echo "zapisuje wyniki dla $((i+1)) watku" | |
| cat wyniki.txt | grep "$i\$" > temp | |
| sort temp > $i | |
| done | |
| #echo 'set terminal png font "/usr/share/fonts/dejavu/DejaVuSans.ttf" 20 size 1200,1000' > gnuplot.gnu |