2012-12-01から1ヶ月間の記事一覧

Bash変態文法最速マスター? 改め bashのプロセス置換

hirasawa@aspire-blue2:~$ echo <(ls) <(ls) /dev/fd/63 /dev/fd/62 hirasawa@aspire-blue2:~$ ってどゆ理屈? ってしらべてて見つけたサイト一覧 Bash変態文法最速マスター? https://sites.google.com/a/tatsuo.jp/programming/Home/bash/hentai-bunpou-sai…

Bash変態文法最速マスター? 改め bashのプロセス置換 改め 名前付きパイプ

こちら FIFO(名前付きパイプ) - Hayrodge Library を参考にして、WAIT()関数の位置を修正したら期待通りに http://www.hayrodge.jp/?front=treedata%2Fc_lang%2F%E3%83%97%E3%83%AD%E3%82%BB%E3%82%B9%E9%96%93%E9%80%9A%E4%BF%A1%2F%E2%91%A4FIFO%28%E5%90%…

[linux] シンボリックリンク切れを検出する。

for file in `find . -type l` do [ test -e $file ] || echo "$file : link broken" doneよりくわしくはここがよさげ http://www.ibm.com/developerworks/jp/linux/library/l-lpic1-v3-104-6/

しらんかったよ もしくは わすれてたよ のメモ

日経linux201301号の付録冊子より base64 =iso2022-JP?B? の場合 echo '=iso2022-JP?B?something....' | nkf -m nkf -w -Lu --in-place で置き換えてくれる --in-place? --overwrite とどうちがうんや? リカーシブルにやるとしたら、こうかな find . -type …

usp友の会 チキチキシェルのコマンド履歴

[hirasawa@localhost chikichikiShell]$ touch abcd DEF [hirasawa@localhost chikichikiShell]$ echo ほげ | nkf -s | xargs touch [hirasawa@localhost chikichikiShell]$ ls -ltr 合計 0 -rw-rw-r--. 1 hirasawa hirasawa 0 12月 10 19:12 2012 abcd -rw-…

munin@cent5まずは動かしてみる編の備忘録

munin まずは動かしている編の自分用の備忘録 (201212) /etc/php.iniもいじくる必要があるかもしれないが、忘れたw(ダメじゃんw) 819 yum install munin munin-node 820 chkconfig munin-node on 821 service munin-node start 1027 cp -pr munin.conf mun…

Object.getClass() Class.getName()

[hirasawa@localhost chap4]$ cat HashSample2.java /* Hashtable Sample2 */ import java.util.*; class HashSample2{ public static void main(String args[]){ Hashtable ht = new Hashtable(); ht.put("sato", "65"); ht.put("yamada", "98"); ht.put("s…