(2004-10の一覧)
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

2004-10-29 Fri (他の年の同じ日: 2005)

Solaris 辞書ファイル(word リスト)
2004-10-29-1 / カテゴリ: [unix][Solaris] / [permlink]

/usr/share/lib/dict/words
/usr/dict/words(@)
2004-10-28 Thu (他の年の同じ日: 2005)
2004-10-25 Mon (他の年の同じ日: 2005 2006)

XP ファイル名に使えない文字
2004-10-25-1 / カテゴリ: [win] / [permlink]

\ / : * ? < > |
2004-10-19 Tue (他の年の同じ日: 2005)

文字コード
2004-10-19-2 / カテゴリ: [unix] / [permlink]

euc
# EUC-JP文字
$ascii = '[\x00-\x7F]'; # 1バイト EUC-JP文字
$twoBytes = '(?:[\x8E\xA1-\xFE][\xA1-\xFE])'; # 2バイト EUC-JP文字
$threeBytes = '(?:\x8F[\xA1-\xFE][\xA1-\xFE])'; # 3バイト EUC-JP文字
$character = "(?:$ascii|$twoBytes|$threeBytes)"; # EUC-JP文字

csh/tcsh ^D ログアウト制御
2004-10-19-1 / カテゴリ: [unix][linux][shell] / [permlink]

% set ignoreeof   ^D でログアウトできなくする
% unset ignoreeof ^D でログアウトできるようにする
2004-10-16 Sat (他の年の同じ日: 2005)

form input type=text
2004-10-16-1 / カテゴリ: [html] / [permlink]

改行をはさんだ場合
<input type="text" value="line1\nline2">
IEは改行をぶった切ってpost、mozillaは改行以降を削ってpostした

Apache basic認証 htpasswd パスワードの中身
2004-10-15-2 / カテゴリ: [linux][Apache] / [permlink]

print crypt(shift,
            join("", ('.', '/', 'a'..'z', 'A'..'Z', 0..9)[rand 64, rand 64])
						), "\n";
まぁ、こんな感じで。

Apache htaccess basic認証
2004-10-15-1 / カテゴリ: [linux][Apache] / [permlink]

AuthUserFile /path/to/.htpasswd
AuthGroupFile /dev/null
AuthName "-.-"
AuthType Basic
#require valid-user     # 全ユーザ
require user zaki       # 特定ユーザのみ
2004-10-14 Thu (他の年の同じ日: 2005 2012)

mutt キーバインド(リスト表示時)
2004-10-14-2 / カテゴリ: [linux][メール][アプリ] / [permlink]

= 先頭へ (mew の <)
* 末尾へ (mew の >)

Terminal 背景透過
2004-10-14-1 / カテゴリ: [linux][アプリ] / [permlink]

rxvt -ip
eterm -O
2004-10-13 Wed (他の年の同じ日: 2005 2006 2012)

mutt Maildir 形式
2004-10-13-1 / カテゴリ: [linux][メール][アプリ] / [permlink]

ディレクトリ移動
=.dirname

コマンドの戻り値の意味
2004-10-12-2 / カテゴリ: [unix] / [permlink]

sysexitsより
64: コマンド使用法エラー。オプション異常など
65: 入力データエラー
75: 一時的な動作エラー。もう一度同じ事をやれば成功するかもしれないエラー。

ps フォーマット
2004-10-12-1 / カテゴリ: [unix][Solaris][command] / [permlink]

$ ps -o user,fname,pid,ppid
2004-10-08 Fri (他の年の同じ日: 2005 2006)

モジュールコンパイル
2004-10-08-1 / カテゴリ: [perl] / [permlink]

$ perl Makefile.PL prefix=/path/to
(うまくいかないなら perl Makefile.PL lib=/path/to かも)
$ make
$ make test
$ make install

vi 外部コマンドの結果のはりつけ
2004-10-07-3 / カテゴリ: [linux][vi] / [permlink]

:r !こまんど

vi 外部ファイルはりつけ
2004-10-07-2 / カテゴリ: [linux][vi] / [permlink]

:r ファイル名

use CGI での未定義
2004-10-07-1 / カテゴリ: [programming][perl][CGI] / [permlink]

my $hoge = $query->param('hoge');
で取得した場合、
?hoge=xx
は当然 xx
?hoge=
は空文字(defined)
なにもなければ
undef
になる

mutt ディレクトリ移動
2004-10-06-1 / カテゴリ: [linux][メール][アプリ] / [permlink]

c
のあと、ディレクトリ名
Maildir 形式のサブディレクトリの .dirname の場合は
=.dirname
と、頭に = をつける

cygwin courier-imap-3.0.8 インストール(失敗)
2004-10-04-1 / カテゴリ: [win][imap][cygwin] / [permlink]

./configure
ダメ

./configure --disable-root-check
checking whether -lresolv is needed for res_query... configure: error: 
Cannot find function 	res_query
configure: error: /bin/bash './configure' failed for authlib

./configure --disable-root-check --without-authdaemon
やっぱダメ…
2004-10-01 Fri (他の年の同じ日: 2011)

screen のステータス行にいろいろ表示してみる
2004-10-01-1 / カテゴリ: [unix][linux][command][screen] / [permlink]

結局
hardstatus alwayslastline "%{= kw}%-w%{= rw}% %t%{= kw}%+w %=%H %c / %l"
になりました。
%H .. ホスト名
%l .. ロード
などなど
2004-10
前の月 / 次の月 / 最新

2013 : 01 02 03 04 05 06 07 08 09 10 11 12
2012 : 01 02 03 04 05 06 07 08 09 10 11 12
2011 : 01 02 03 04 05 06 07 08 09 10 11 12
2010 : 01 02 03 04 05 06 07 08 09 10 11 12
2009 : 01 02 03 04 05 06 07 08 09 10 11 12
2008 : 01 02 03 04 05 06 07 08 09 10 11 12
2007 : 01 02 03 04 05 06 07 08 09 10 11 12
2006 : 01 02 03 04 05 06 07 08 09 10 11 12
2005 : 01 02 03 04 05 06 07 08 09 10 11 12
2004 : 01 02 03 04 05 06 07 08 09 10 11 12

最終更新時間: 2013-05-02 16:12