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 | |
| i=1 | |
| while [ $i -le 700 ];do | |
| echo "$i" | |
| dd if=/dev/zero of=test$i.dd bs=1M count=1024 oflag=direct,nonblock | |
| dd if=test$i.dd of=/dev/null bs=1M iflag=direct,nonblock | |
| i=$((i+1)) | |
| rm test*.dd | |
| done |
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
| // ==UserScript== | |
| // @name Github links: Open in new tab | |
| // @namespace io.kuc.ben | |
| // @version 1.1 | |
| // @description Open all links from github in new tab. | |
| // @author bkucera,powersee | |
| // @match https://github.com/* | |
| // ==/UserScript== | |
| (function() { |
OlderNewer