psh

digの結果から ANSWER SECTION のみ抜き出す

dig の出力結果は以下のような感じです。 $ dig google.com ; <<>> DiG 9.5.0-P2 <<>> google.com ;; global options: printcmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 17158 ;; flags: qr rd ra; QUERY: 1, ANSWER: 3, AUTHO…

ログインシェルをpshに変更

深夜高速 Ubuntuログインシェルをzshに変更する上のサイトを参考に、ubuntuのログインシェルをpshに変更します。 ~/.bashrc の下の方に、以下の記述を加えます。 if [ -x `which psh` ]; then echo '[switch login shell] bash -> psh' exec psh fi端末を再…

psh

pshは、perlのshellです。適当に ~/.pshrc を書いてみた。 #!/usr/bin/perl use strict; use warnings; use Psh; use Psh::Prompt; use Sys::Hostname; use File::Basename; use Term::ANSIColor; # The maximum number of lines to save in the history fil…