This file contains 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
## | |
## Arch Linux repository mirrorlist | |
## Generated on 2015-10-15 | |
## | |
## Worldwide | |
#Server = http://mirror.rackspace.com/archlinux/$repo/os/$arch | |
## Australia | |
#Server = http://mirror.aarnet.edu.au/pub/archlinux/$repo/os/$arch |
This file contains 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
dyurk@ubuntu:~/testENV$ ll | |
total 20 | |
drwxrwxr-x 5 dyurkiewicz dyurkiewicz 4096 Aug 17 17:12 ./ | |
drwxr-xr-x 29 dyurkiewicz dyurkiewicz 4096 Aug 17 17:04 ../ | |
-rw-rw-r-- 1 dyurkiewicz dyurkiewicz 0 Aug 17 17:04 34.txt | |
-rw-rw-r-- 1 dyurkiewicz dyurkiewicz 0 Aug 17 17:05 53.txt | |
drwxrwxr-x 2 dyurkiewicz dyurkiewicz 4096 Aug 17 17:11 dir1/ | |
drwxrwxr-x 2 dyurkiewicz dyurkiewicz 4096 Aug 17 17:12 dir2/ | |
drwxrwxr-x 2 dyurkiewicz dyurkiewicz 4096 Aug 17 17:12 dir3/ | |
-rw-rw-r-- 1 dyurkiewicz dyurkiewicz 0 Aug 17 17:04 foo.txt |
This file contains 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; echo -e "quit\n" | openssl s_client -connect myhappyserver.com:443 -tlsextdebug 2>&1| grep 'TLS server extension "heartbeat" (id=15), len=1' |
This file contains 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
play -n synth 60:00 brownnoise -65 tremolo .20 vol -20db |
This file contains 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
SYM=`echo -e "\xE4\x98\xA3"` | |
PS1="\n\$(if [[ \$? == 0 ]]; then echo \"\[\033[0;32m\]\"; else echo \"\[\033[0;31m\]\"; fi)$SYM [ \u@\[\e[1;36m\]\H\[\e[m\]\033[0;32m\]\]] [ \w ] [ \T ]\n\[\033[0m\]$SYM " |
This file contains 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 ((`pgrep -l chef-client | wc -l` > 1)) ; then `killall chef-client && /etc/init.d/chef-client restart` > /dev/null ; fi; |
This file contains 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
Add `&rawData=true` to URL |
This file contains 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
find -maxdepth 3 -type d | while read -r dir; do printf "%s:\t" "$dir"; find "$dir" | wc -l; done |