Last active
March 15, 2020 17:54
-
-
Save sawa2d2/debe6b09fc2761a73ebe60184676daca to your computer and use it in GitHub Desktop.
Tips
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
| rm -rf ~/.cache/thumbnails/* ~/.thumbnails/* |
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
| for i in $(seq -f %04g 1 100) # 0001, 0002, ..., 0100 | |
| do | |
| wget http://example.com/$i.jpg | |
| sleep 0.5 | |
| 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
| echo 'notify-send "カップ麺ができました"' | at now + 3 minutes |
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
| if [ $? != 0 ]; then exit; fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment