2010-05-01から1ヶ月間の記事一覧

検索コマンドのメモ

grep ファイル内文字列の検索 形式 grep (option) [keyword] filename 使いそうなオプション -i:大文字と小文字を両方検索 -l:ファイル名のリストのみ出力 -r:ディレクトリ以下も再帰的に検索 (例) $grep hoge hoge.txt hoge.txtに"hoge"があるか探す $grep …

pdfファイルに文字コードを埋め込む

ちゃんとしたやり方かは分からないけれど 自分がやってできた方法はこちら(環境) ubuntu9.10 platex dvipdfmx フォントをLaTeXのフォントディレクトリに追加 フォントディレクトリを作成 $ sudo mkdir -p /usr/share/texmf/fonts/truetype/ 移動 $ cd /usr/s…

apacheでcgiを許可

ubuntu9.10で, パーミッションの問題 ・ファイル自身 ・フォルダ ・ExecCGI ・suじゃないと編集できないところ (等を書く予定)

gauche+emacs

gaucheをemacsで使う時の設定 「プログラミング言語Gauche」より ;;gauche (modify-coding-system-alist 'process "gosh" '(utf-8 . utf-8)) (setq scheme-program-name "gosh -i") (autoload 'scheme-mode "cmuscheme" "Major mode for Scheme." t) (autolo…

gauche