<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>dreamedge.net</title>
	<atom:link href="http://www.dreamedge.net/feed" rel="self" type="application/rss+xml" />
	<link>http://www.dreamedge.net</link>
	<description>日々の活動記録</description>
	<lastBuildDate>Fri, 16 Sep 2011 02:07:50 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>org-mode&#12398;&#20351;&#12356;&#26041;</title>
		<link>http://www.dreamedge.net/archives/168</link>
		<comments>http://www.dreamedge.net/archives/168#comments</comments>
		<pubDate>Sun, 11 Apr 2010 06:29:00 +0000</pubDate>
		<dc:creator>dreamedge</dc:creator>
				<category><![CDATA[tiplog]]></category>
		<category><![CDATA[emacs]]></category>

		<guid isPermaLink="false">http://www.dreamedge.org/wordpress/?p=168</guid>
		<description><![CDATA[todoリストの管理にorg-modeを使うことにした． チェックボックス形式のtodo管理もできるのは当然として，タグによる複数予定の区別が出来るのが選んだ理由． 複数走っている仕事のプロジェクトとプライベートな事柄の [...]]]></description>
			<content:encoded><![CDATA[<p>todoリストの管理にorg-modeを使うことにした．<br />
チェックボックス形式のtodo管理もできるのは当然として，タグによる複数予定の区別が出来るのが選んだ理由．<br />
複数走っている仕事のプロジェクトとプライベートな事柄の区別が容易に出来るのは便利だけど，ちょっと使用方法が複雑になるのは難点かな．</p>
<p>簡単な使用コマンドのメモ．</p>
<ul>
<li>C-c C-t : TODOタグのトグル</li>
<li>C-u C-c C-t : TODOタグ指定で項目チェンジ</li>
<li>C-c C-c : チェックボックスをトグル</li>
<li>C-c C-q : タグ情報の付与</li>
<li>C-c , : 優先度情報の付与</li>
<li>C-c C-d : DEADLINEの入れ方</li>
<li>C-c C-s : SCHEDULEの入れ方</li>
<li>C-c C-v : TODO項目のリストアップ</li>
<li>C-c a t : 全体でのTODO項目のリストアップ</li>
<li>S-M-RET : 新規項目のインサート</li>
<li>C-c C-x M : 新規項目のインサート</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.dreamedge.net/archives/168/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>grep&#12391;&#12510;&#12483;&#12481;&#12375;&#12383;&#37096;&#20998;&#12384;&#12369;&#12434;&#21462;&#12426;&#20986;&#12377;</title>
		<link>http://www.dreamedge.net/archives/167</link>
		<comments>http://www.dreamedge.net/archives/167#comments</comments>
		<pubDate>Sun, 11 Apr 2010 04:05:00 +0000</pubDate>
		<dc:creator>dreamedge</dc:creator>
				<category><![CDATA[tiplog]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.dreamedge.org/wordpress/?p=167</guid>
		<description><![CDATA[通常grepはマッチした行を出力するけど，マッチ部分だけを取りたいっていうのはよくある話． そういう時は-oオプションを付ければOK. $ ifconfig &#124; grep -o -e "[0-9]\+\.[0-9]\+\ [...]]]></description>
			<content:encoded><![CDATA[<p>通常grepはマッチした行を出力するけど，マッチ部分だけを取りたいっていうのはよくある話．<br />
そういう時は-oオプションを付ければOK.</p>
<pre>
$ ifconfig | grep -o -e "[0-9]\+\.[0-9]\+\.[0-9]\+\.[0-9]"
$ ifconfig | egrep -o "[0-9]+\.[0-9]+\.[0-9]+\.[0-9]"
</pre>
<p>基本正規表現で扱うので，grepというようりはegrep用機能といえそう．</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dreamedge.net/archives/167/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#26085;&#26412;&#35486;&#12501;&#12449;&#12452;&#12523;&#21517;&#12398;&#25991;&#23383;&#12467;&#12540;&#12489;&#22793;&#26356;&#26041;&#27861;</title>
		<link>http://www.dreamedge.net/archives/166</link>
		<comments>http://www.dreamedge.net/archives/166#comments</comments>
		<pubDate>Sun, 11 Apr 2010 03:59:00 +0000</pubDate>
		<dc:creator>dreamedge</dc:creator>
				<category><![CDATA[tiplog]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.dreamedge.org/wordpress/?p=166</guid>
		<description><![CDATA[先日作業環境のlocaleを，jaJP.EUC-JPからjaJP.UTF-8へ変更したため，日本語ファイル名の一括変換を行った． $ convmv -f euc-jp -t utf8 -r . --notest で，カレ [...]]]></description>
			<content:encoded><![CDATA[<p>先日作業環境のlocaleを，ja<em>JP.EUC-JPからja</em>JP.UTF-8へ変更したため，日本語ファイル名の一括変換を行った．</p>
<pre>
$ convmv -f euc-jp -t utf8 -r . --notest
</pre>
<p>で，カレントディレクトリ以下のファイルについて，一括で変換が可能．</p>
<p>&#8211;notestオプションを外すと，変更されるファイルの一覧が表示するだけで変換処理は行わないので，重要なファイルがある時には先にそっちで確認を取った方がよさげ．</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dreamedge.net/archives/166/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MPD(Music Player Daemon)&#12364;AirTunes&#12395;&#20986;&#21147;&#12377;&#12427;&#12424;&#12358;&#12395;&#12377;&#12427;</title>
		<link>http://www.dreamedge.net/archives/165</link>
		<comments>http://www.dreamedge.net/archives/165#comments</comments>
		<pubDate>Fri, 11 Dec 2009 07:43:00 +0000</pubDate>
		<dc:creator>dreamedge</dc:creator>
				<category><![CDATA[tiplog]]></category>
		<category><![CDATA[mpd]]></category>

		<guid isPermaLink="false">http://www.dreamedge.org/wordpress/?p=165</guid>
		<description><![CDATA[/etc/mpd.confのaudio_outputのsinkを設定すれば良い． audio_output { type "pulse" name "My Pulse Output" server "localhost" [...]]]></description>
			<content:encoded><![CDATA[<p>/etc/mpd.confのaudio_outputのsinkを設定すれば良い．</p>
<pre>
audio_output {
        type            "pulse"
        name            "My Pulse Output"
        server          "localhost"             # optional
        sink            "raop.AirMac-Express.local"     # optional
}
</pre>
<p>sinkに設定する名前は，&#8221;PulseAudio Manager&#8221;の&#8221;Modules&#8221;に表示されている&#8221;module-laop-sink&#8221;の項目にある&#8221;sink_name&#8221;の内容を取ってくれば良い．</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dreamedge.net/archives/165/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#12501;&#12449;&#12452;&#12523;&#21517;&#12398;&#19968;&#25324;&#22793;&#25563;</title>
		<link>http://www.dreamedge.net/archives/164</link>
		<comments>http://www.dreamedge.net/archives/164#comments</comments>
		<pubDate>Mon, 07 Dec 2009 05:26:00 +0000</pubDate>
		<dc:creator>dreamedge</dc:creator>
				<category><![CDATA[tiplog]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.dreamedge.org/wordpress/?p=164</guid>
		<description><![CDATA[画像の一括変換のついでに，ファイル名の一括変換も調べたら，renameコマンドを使えということだった． 例えば，foo01.png, foo02.png&#8230;をFOO01.png, FOO02.png&#8230 [...]]]></description>
			<content:encoded><![CDATA[<p>画像の一括変換のついでに，ファイル名の一括変換も調べたら，renameコマンドを使えということだった．</p>
<p>例えば，foo<em>01.png, foo</em>02.png&#8230;をFOO<em>01.png, FOO</em>02.png&#8230;にしたい場合，</p>
<pre>
$ rename "s/foo_/FOO_/" foo_*.png
</pre>
<p>とかでいいみたい．正規表現が使えるのは便利．</p>
<p>しかし何で今までこんな単純なのも知らなかったんだろう？</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dreamedge.net/archives/164/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#30011;&#20687;&#12501;&#12449;&#12452;&#12523;&#12398;&#19968;&#25324;&#22793;&#25563;</title>
		<link>http://www.dreamedge.net/archives/162</link>
		<comments>http://www.dreamedge.net/archives/162#comments</comments>
		<pubDate>Wed, 18 Nov 2009 07:30:00 +0000</pubDate>
		<dc:creator>dreamedge</dc:creator>
				<category><![CDATA[tiplog]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.dreamedge.org/wordpress/?p=162</guid>
		<description><![CDATA[mogrifyを使う． 例えば，bmpのファイルをpngに変えたい場合はformatオプションを使えばOK． $ mogrify -format png *bmp 他にも回転(-rotate)やらリサイズ(-resize [...]]]></description>
			<content:encoded><![CDATA[<p>mogrifyを使う．<br />
例えば，bmpのファイルをpngに変えたい場合はformatオプションを使えばOK．</p>
<pre>
$ mogrify -format png *bmp
</pre>
<p>他にも回転(-rotate)やらリサイズ(-resize)やらImageMagicの機能なら何でも出来る万能さがすごい．<br />
使いこなすのは難しいけど，簡単な編集が一括で出来るのは便利．</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dreamedge.net/archives/162/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pulseaudio&#12363;&#12425;AirTunes&#12395;&#20986;&#21147;&#12377;&#12427;</title>
		<link>http://www.dreamedge.net/archives/161</link>
		<comments>http://www.dreamedge.net/archives/161#comments</comments>
		<pubDate>Mon, 02 Nov 2009 19:08:00 +0000</pubDate>
		<dc:creator>dreamedge</dc:creator>
				<category><![CDATA[tiplog]]></category>
		<category><![CDATA[pulseaudio]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.dreamedge.org/wordpress/?p=161</guid>
		<description><![CDATA[KarmicからAirMac Expressに搭載されているAirTunesに音声を出力できるようになった．以下そのやりかた． まずはpulseaudio-module-raopをインストールする $ sudo apti [...]]]></description>
			<content:encoded><![CDATA[<p>KarmicからAirMac Expressに搭載されているAirTunesに音声を出力できるようになった．以下そのやりかた．</p>
<p>まずはpulseaudio-module-raopをインストールする</p>
<pre>
$ sudo aptitude install pulseaudio-module-raop
</pre>
<p>次にpaprefsコマンドを入力して，でてくるダイアログの&#8221;Network Access&#8221;のなかの&#8221;Make discoverable Apple AirTunes sound devices available locally&#8221;のチェックを入れる．<br />
ちなみにここで結構ハマった．普通気がつかないよなー．</p>
<p>上手くAirMac Expressに接続されているかを確認する．pamanを入力して，出てくるダイアログの&#8221;Modules&#8221;タグのなかに&#8221;module-raop-sink&#8221;があるかを確認．</p>
<p>AirTunesに出力するには，pavucontrolコマンドを入力して，出てきたダイアログの&#8221;Playback&#8221;から選択すればよい．</p>
<p>途中で使ったpaprefs, paman, pavucontrolはpadevchooserパッケージを入れると一緒に入る．実際は個別に立ち上げるの不便なので，アプリケーションメニューから&#8221;PulseAudio Device Chooser&#8221;を立ち上げておいて，そこから開くのがラクチン．</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dreamedge.net/archives/161/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Karmic&#12391;MPD(Music Player Daemon)&#12434;&#20351;&#12358;</title>
		<link>http://www.dreamedge.net/archives/159</link>
		<comments>http://www.dreamedge.net/archives/159#comments</comments>
		<pubDate>Sat, 31 Oct 2009 22:05:00 +0000</pubDate>
		<dc:creator>dreamedge</dc:creator>
				<category><![CDATA[tiplog]]></category>
		<category><![CDATA[mpd]]></category>

		<guid isPermaLink="false">http://www.dreamedge.org/wordpress/?p=159</guid>
		<description><![CDATA[自宅のPCを音楽サーバにするべく，MPDをインストールした．というのも，Karmicからpulseaudio-module-raopがパッケージに入り，AirMac Expressに繋がってるスピーカーに出力できるように [...]]]></description>
			<content:encoded><![CDATA[<p>自宅のPCを音楽サーバにするべく，MPDをインストールした．というのも，Karmicからpulseaudio-module-raopがパッケージに入り，AirMac Expressに繋がってるスピーカーに出力できるようになったので．書斎のPCを音楽サーバとすれば，リビングのスピーカーにいつでも音を出せるようになるわけです．</p>
<p>標準パッケージだから簡単にいくかなと思っていたら，思いの外手間がかかったのでその手順をメモ．</p>
<p>1. /etc/mpd.confを編集</p>
<ul>
<li>音楽ファイルの置いてあるフォルダを指定する</li>
</ul>
<pre>
music_directory     "/home/music"
</pre>
<ul>
<li>デフォルトの出力先(alsa)をコメントアウト</li>
</ul>
<pre>
#audio_output {
#       type            "alsa"
...
#}
</pre>
<p>の部分をコメントアウト</p>
<ul>
<li>pulseaudio出力の部分のコメントを外す</li>
</ul>
<pre>
audio_output {
        type            "pulse"
        name            "My Pulse Output"
#       server          "remote_server"         # optional
#       sink            "remote_server_sink"    # optional
}
</pre>
<p>の部分．</p>
<p>2. pulseaudio側がmpdを受け付けるようにする<br />
<a href="http://mpd.wikia.com/wiki/PulseAudio">mpdのwiki</a>にあるように，paprefsを入れて，networkアクセスを許可する</p>
<pre>
$ sudo aptitude install paprefs
$ paprefs
</pre>
<p>出てきたダイアログの&#8221;Network Server&#8221;タグを選んで，<br />
&#8220;Enable network access to local sound devices&#8221;,&#8221;Don&#8217;t require authentication&#8221;のチェックボックスにチェックを入れる．</p>
<p>3. DBファイルを構築する</p>
<pre>
$ sudo mpd --create-db
</pre>
<p>音楽ファイルが多いとかなり時間がかかるので注意．バックグランドで動くので，特に何の出力もなくコマンド終了したように見えるけど，裏ではガリガリ動いてます．知らずにもう一回コマンド入力したりすると，</p>
<pre>
listen: Failed to listen on X.X.X.X (line 69): Address already in use
</pre>
<p>ってワーニングが出る．最初設定間違えたのかと誤解をして右往左往したけど，落ち着いて&#8221;ps auwx | grep mpd&#8221;したら，前に動かしたのがまだ動いてただけでした．</p>
<p>4. クライアントからアクセスして使う<br />
<a href="http://mpd.wikia.com/wiki/Clients">いろいろあるけど</a>個人的にはgmpcがお勧め．なんかWii用とかWeb版とかいろいろあってすごい．</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dreamedge.net/archives/159/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GNU Screen&#12398;caption&#12395;&#12467;&#12510;&#12531;&#12489;&#12398;&#20986;&#21147;&#32080;&#26524;&#12434;&#34920;&#31034;&#12377;&#12427;</title>
		<link>http://www.dreamedge.net/archives/158</link>
		<comments>http://www.dreamedge.net/archives/158#comments</comments>
		<pubDate>Tue, 29 Sep 2009 12:10:00 +0000</pubDate>
		<dc:creator>dreamedge</dc:creator>
				<category><![CDATA[tiplog]]></category>
		<category><![CDATA[screen]]></category>

		<guid isPermaLink="false">http://www.dreamedge.org/wordpress/?p=158</guid>
		<description><![CDATA[backtickを使うことによって，何らかのコマンドの出力をcaptionに表示できる． 具体的には，.screenrcの中に&#8221;backtick id lifespan autorefresh cmd arg [...]]]></description>
			<content:encoded><![CDATA[<p>backtickを使うことによって，何らかのコマンドの出力をcaptionに表示できる．<br />
具体的には，.screenrcの中に&#8221;backtick id lifespan autorefresh cmd args &#8230;&#8221;という形で実行するコマンドを書き込んで，captionの設定中で&#8221;%id`&#8221;で参照する．</p>
<pre>
backtick 0 0 10 date -u
caption always "%0`"
</pre>
<p>この場合id=0, lifespan=0, autorefresh=10という設定で，&#8221;date -u&#8221;を実行する指定になる．結果として10秒に1度captionに時刻が更新されるようになる．</p>
<p>このlifespanとautorefreshの関係が理解しづらいのだが，<br />
lifespanは前にコマンドを実行した内容が，有効でなくなるまでの時間．<br />
autorefreshはcaptionの内容を再作成して更新する時間．<br />
なので，autorefreshの時刻が来ときに前にコマンドを実行してからlifespan以上の秒数が立っていると，コマンドは再実行されているので表示内容が変わる．</p>
<p>lifespan=5, autorefresh=3の場合</p>
<pre>
            0    5   10   15
   lifespan |----|----|----|
autorefresh |--|--|--|--|--|
            o  x  o  x  o  o
</pre>
<p>3秒と9秒でのrefreshでは，lifespanが切れてないのでコマンドは実行されない</p>
<p>lifespan=3, autorefresh=5の場合</p>
<pre>
   lifespan |--|--|--|--|--|
autorefresh |----|----|----|
            o    o    o    o
</pre>
<p>どのrefresh時点でもlifespanが切れてるのでコマンドが実行される</p>
<p>こんなこと考えるのは面倒くさいので，更新したい秒数があるならlifespan, autorefreshの両方にそれを設定しておけばいい．</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dreamedge.net/archives/158/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Office&#12391;&#25913;&#34892;&#12434;&#26908;&#32034;&#12377;&#12427;</title>
		<link>http://www.dreamedge.net/archives/157</link>
		<comments>http://www.dreamedge.net/archives/157#comments</comments>
		<pubDate>Sun, 27 Sep 2009 04:05:00 +0000</pubDate>
		<dc:creator>dreamedge</dc:creator>
				<category><![CDATA[tiplog]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.dreamedge.org/wordpress/?p=157</guid>
		<description><![CDATA[[コンソール上で改行を入力する場合]や，[emacsのミニバッファで改行を入力する場合]と同様に，Ctrl-Jを検索ダイアログの「検索する文字列」の欄に入力すればよい．表面上は入力されていないように見えるので，ちょっとや [...]]]></description>
			<content:encoded><![CDATA[<p>[コンソール上で改行を入力する場合]や，[emacsのミニバッファで改行を入力する場合]と同様に，Ctrl-Jを検索ダイアログの「検索する文字列」の欄に入力すればよい．表面上は入力されていないように見えるので，ちょっとややこしいけど．</p>
<p>なんでCtrl-Jなのかって話は，<a href="http://pc.nikkeibp.co.jp/article/NPC/20070626/275918/">PC Onlineの解説</a>みると納得できます．</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dreamedge.net/archives/157/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#12467;&#12531;&#12477;&#12540;&#12523;&#12391;&#12398;&#25913;&#34892;&#12539;&#12479;&#12502;&#12398;&#20837;&#21147;&#26041;&#27861;</title>
		<link>http://www.dreamedge.net/archives/156</link>
		<comments>http://www.dreamedge.net/archives/156#comments</comments>
		<pubDate>Sun, 27 Sep 2009 03:58:00 +0000</pubDate>
		<dc:creator>dreamedge</dc:creator>
				<category><![CDATA[tiplog]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.dreamedge.org/wordpress/?p=156</guid>
		<description><![CDATA[自由文字列のオプションを渡してコマンドを起動したい時とかに，コンソール(shell)上で改行・タブコードを入力したくなったばあいの対処方法． 改行： ctrl-v ctrl-j タブ：ctrl-v ctrl-i 関連情報 [...]]]></description>
			<content:encoded><![CDATA[<p>自由文字列のオプションを渡してコマンドを起動したい時とかに，コンソール(shell)上で改行・タブコードを入力したくなったばあいの対処方法．</p>
<p>改行： ctrl-v ctrl-j<br />
タブ：ctrl-v ctrl-i</p>
<p>関連情報：<a href="http://www.dreamedge.net/2008/7/15/64">emacsの場合</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dreamedge.net/archives/156/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IME2007&#12391;&#12486;&#12531;&#12509;&#12521;&#12522;&#12501;&#12449;&#12452;&#12523;&#12364;&#12487;&#12451;&#12473;&#12463;&#12434;&#22311;&#36843;&#12377;&#12427;&#20214;&#12395;&#12388;&#12356;&#12390;</title>
		<link>http://www.dreamedge.net/archives/155</link>
		<comments>http://www.dreamedge.net/archives/155#comments</comments>
		<pubDate>Sat, 26 Sep 2009 02:15:00 +0000</pubDate>
		<dc:creator>dreamedge</dc:creator>
				<category><![CDATA[tiplog]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.dreamedge.org/wordpress/?p=155</guid>
		<description><![CDATA[IME2007は100MB位のテンポラリファイルを作るので，容量の小さい環境やDocuments and Settingsのバックアップを取る時に非常に邪魔．WindowsXPなら，”C:\Documents and S [...]]]></description>
			<content:encoded><![CDATA[<p>IME2007は100MB位のテンポラリファイルを作るので，容量の小さい環境やDocuments and Settingsのバックアップを取る時に非常に邪魔．WindowsXPなら，”C:\Documents and Settings\<em>UserName</em>\Local Settings\Application Data\Microsoft\IME12\IMEJP\Dicts&#8221;に保存されている．</p>
<p><a href="http://support.microsoft.com/kb/940897/ja">Microsoftの情報</a>を読む限り，削除しても自動で再作成されるみたいなので，気になったらさっくり削除してもOKっぽい．</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dreamedge.net/archives/155/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#12525;&#12540;&#12489;&#12497;&#12473;&#12398;&#35373;&#23450;</title>
		<link>http://www.dreamedge.net/archives/154</link>
		<comments>http://www.dreamedge.net/archives/154#comments</comments>
		<pubDate>Sat, 26 Sep 2009 02:14:00 +0000</pubDate>
		<dc:creator>dreamedge</dc:creator>
				<category><![CDATA[tiplog]]></category>
		<category><![CDATA[emacs]]></category>

		<guid isPermaLink="false">http://www.dreamedge.org/wordpress/?p=154</guid>
		<description><![CDATA[例えばload-pathに&#8221;~/.emacs.d/&#8221;を追加したい場合，.emacsに以下を記述する． (setq load-path (cons "~/.emacs.d/" load-path))]]></description>
			<content:encoded><![CDATA[<p>例えばload-pathに&#8221;~/.emacs.d/&#8221;を追加したい場合，.emacsに以下を記述する．</p>
<pre>
(setq load-path (cons "~/.emacs.d/" load-path))
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.dreamedge.net/archives/154/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>shell&#12391;&#12398;&#12479;&#12502;&#20837;&#21147;&#26041;&#27861;</title>
		<link>http://www.dreamedge.net/archives/153</link>
		<comments>http://www.dreamedge.net/archives/153#comments</comments>
		<pubDate>Thu, 03 Sep 2009 06:39:00 +0000</pubDate>
		<dc:creator>dreamedge</dc:creator>
				<category><![CDATA[tiplog]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.dreamedge.org/wordpress/?p=153</guid>
		<description><![CDATA[sortコマンドのセパレータに\tを指定したくてもできなくて困っていた所， どうもctrl+vのあとにtabを打てばよいらしい． bash, zshともにできたので，cshもこれでいけるのかな？ ちなみにやりたかったコマ [...]]]></description>
			<content:encoded><![CDATA[<p>sortコマンドのセパレータに\tを指定したくてもできなくて困っていた所，<br />
どうもctrl+vのあとにtabを打てばよいらしい．<br />
bash, zshともにできたので，cshもこれでいけるのかな？</p>
<p>ちなみにやりたかったコマンドは以下の通り．</p>
<pre>
sort -r -n -t "ここにタブ" +1
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.dreamedge.net/archives/153/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#35079;&#25968;&#12398;&#12489;&#12513;&#12452;&#12531;&#12395;&#25152;&#23646;&#12375;&#12390;&#12356;&#12427;&#38555;&#12398;resolv.conf&#12398;&#35373;&#23450;</title>
		<link>http://www.dreamedge.net/archives/152</link>
		<comments>http://www.dreamedge.net/archives/152#comments</comments>
		<pubDate>Wed, 02 Sep 2009 04:39:00 +0000</pubDate>
		<dc:creator>dreamedge</dc:creator>
				<category><![CDATA[tiplog]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.dreamedge.org/wordpress/?p=152</guid>
		<description><![CDATA[search hoge.com huga.net というように探すドメイン名を複数設定できる． eth0をhoge.comにつないで，eth1をhuga.netにつないでるとかで別のドメイン領域につないでいる時に便利．]]></description>
			<content:encoded><![CDATA[<pre>
search hoge.com huga.net
</pre>
<p>というように探すドメイン名を複数設定できる．<br />
eth0をhoge.comにつないで，eth1をhuga.netにつないでるとかで別のドメイン領域につないでいる時に便利．</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dreamedge.net/archives/152/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  www.dreamedge.net/feed ) in 0.58541 seconds, on May 20th, 2012 at 12:48 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on May 20th, 2012 at 10:48 pm UTC -->
