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
| #macro index,pager s "<save-message>?" "save to a different folder" | |
| save-hook . =Archives.%[%Y] | |
| macro index,pager a s<return>y'$'y "archive email" |
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 | |
| # Name: Check for domain name availability | |
| # original at https://linuxconfig.org/check-domain-name-availability-with-bash-and-whois/ | |
| DOMAINS=( '.app' '.at' '.biz' '.box' '.cc' '.ch' '.cloud' '.co.uk' '.com' '.com.au' \ | |
| '.de' '.dev' '.eu' '.global' '.info' '.in' '.io' '.it' '.link' '.mobi' '.net' '.network' \ | |
| '.one' '.org' '.page' '.rocks' '.sh' '.site' '.sk' '.tech' '.tel' '.tv' '.web' '.xyz' ) | |
| ELEMENTS=${#DOMAINS[@]} |