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
| #!/usr/bin/env bash | |
| # bash 4.1.5(1) Linux Ubuntu 10.04 Date : 2019-01-02 | |
| # | |
| # _______________| noise : ambient Brown noise generator (cf. white noise). | |
| # | |
| # Usage: noise [minutes=59] [band-pass freq center=1786] [wave] | |
| # ^minutes can be any positive integer. | |
| # Command "noise 1" will display peak-level meter. | |
| # | |
| # Dependencies: play (from sox package) |
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
| #!/usr/bin/env bash | |
| # bash 4.1.5(1) Linux Ubuntu 10.04 Date : 2013-07-11 | |
| # | |
| # _______________| netspeed : check download speed via command line. | |
| # | |
| # Usage: netspeed [tokyo, london, usw, use, east, west, URL] | |
| # ^default U.S. west coast. | |
| # [ -speed_KB/sec ] | |
| # ^negation activates the Mbps converter. | |
| # |
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
| #!/usr/bin/env bash | |
| # bash 4.1.5(1) Linux Ubuntu 10.04 Date : 2011-08-25 | |
| # | |
| # _______________| httpstatus : get HTTP status code | |
| # | |
| # Usage: httpstatus URL [timeout] [--code or --status] [see 4.] | |
| # ^message with code (default) | |
| # ^code (numeric only) | |
| # ^in secs (default: 3) | |
| # ^URL without "http://" prefix works fine. |
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
| #!/usr/bin/env bash | |
| # bash 3.2.25(1) Ubuntu 7.10 Date : 2012-02-15 | |
| # | |
| # _______________| freqy : sort and order lines by frequency of appearance. | |
| # | |
| # Usage: freqy [optional: file(s)] | |
| # | |
| # Notes: Will work in a pipe. | |
| # Does not alter the file(s) themselves. | |
| # |
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
| # To minimize bugs, include this comment: | |
| # | |
| # | |
| # _oo0oo_ | |
| # o8888888o | |
| # 88" . "88 | |
| # (| -_- |) | |
| # 0\ = /0 | |
| # ___/`---'\___ | |
| # .' \| |// '. |
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
| #!/usr/bin/env bash | |
| # bash 4.1.5(1) Linux Ubuntu 10.04 Date : 2012-08-11 | |
| # | |
| # _______________| telamerica : look-up North American region / area code. | |
| # | |
| # Usage: telamerica [term] | |
| # ^area code (three digits work best), | |
| # or case-sensitive partial regional name. | |
| # | |
| # Examples: % telamerica Mexico |
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
| #!/usr/bin/env bash | |
| # bash 4.1.5(1) Linux Ubuntu 10.04 Date : 2012-03-13 | |
| # | |
| # _______________| keywords : extract keywords from text. | |
| # | |
| # Usage: keywords [file, -x, -] [postproduction] | |
| # # clipboard^ ^stdin (default) | |
| # | |
| # Example: % keywords foo.txt cat | |
| # # or try something like... |
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
| #!/usr/bin/env bash | |
| # bash 4.1.5(1) Linux Ubuntu 10.04 Date : 2012-01-15 | |
| # | |
| # _______________| country : look-up country ISO code or currency symbol. | |
| # | |
| # Usage: country [term] ["iso"|"fx"] | |
| # where "fx" is foreign exchange, | |
| # "iso" is the default option, | |
| # term is case-insensitive regular expression. | |
| # |
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
| #!/usr/bin/env bash | |
| # bash 4.3.11(1) Linux 3.13.0 git 1.9.1 Date : 2018-01-12 | |
| # | |
| # _______________| git-logur : get log of GitHub repo without cloning. | |
| # | |
| # Usage: $ git-logur [username] [repository] [-m|-c|-v] | |
| # # Format defaults to messages -m, else | |
| # # -c for concise text, or -v for verbose json. | |
| # # Concise includes author and committer, with timestamps. | |
| # |
NewerOlder