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/gnuplot | |
| # small sample script to be extended for any project | |
| set terminal wxt size 350,262 enhanced font 'Verdana,10' persist | |
| # Line width of the axes | |
| set border linewidth 1.5 | |
| # Line styles |
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 | |
| max=1000 | |
| cmd="sha256sum -" | |
| blob="dsahgjkasgktaskgk" | |
| endCmd="" | |
| for (( i=1; i<=$max; i++ )) | |
| do | |
| endCmd=${endCmd}"echo ${blob}$i | $cmd;" |
NewerOlder