systemctl list-unit-files --type service
systemctl list-unit-files --type service|grep enabled
systemctl status sshd.service
| for file in /proc/*/status ; do awk '/VmSwap|Name/{printf $2 " " $3}END{ print ""}' $file; done |
| sudo rm -rf /tmp/wsdl-artembeloglazov-* |
| date +%s | sha256sum | base64 | head -c 32 ; echo |
| { | |
| "DontPromptUpdateMsg": false, | |
| "Hotkey": "Ctrl + Space", | |
| "Theme": "Dark", | |
| "QueryBoxFont": "Microsoft Sans Serif", | |
| "QueryBoxFontStyle": null, | |
| "QueryBoxFontWeight": null, | |
| "QueryBoxFontStretch": null, | |
| "ResultItemFont": "Microsoft Sans Serif", | |
| "ResultItemFontStyle": null, |
| var moment = require('moment'); | |
| var a = moment('2013-01-01'); | |
| var b = moment('2013-06-01'); | |
| for (var m = a; m.isBefore(b); m.add('days', 1)) { | |
| console.log(m.format('YYYY-MM-DD')); | |
| } |
I found a solution to this
I'm running:
FreeBSD 10.1
Apache2.4
| #!/bin/zsh | |
| git clone --recursive https://github.com/sorin-ionescu/prezto.git "${ZDOTDIR:-$HOME}/.zprezto" | |
| setopt EXTENDED_GLOB | |
| for rcfile in "${ZDOTDIR:-$HOME}"/.zprezto/runcoms/^README.md(.N); do | |
| ln -s "$rcfile" "${ZDOTDIR:-$HOME}/.${rcfile:t}" | |
| done |
| window.setInterval(function(){ | |
| $("html, body").animate({scrollTop: $(document).height()}); | |
| }, 1000); |
| grep -RinE 'ВЫРАЖЕНИЕ' ./* |