Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

2012-03-04から1日間の記事一覧

RubyでMementoパターン/擬似クリップボード機能で理解

概要 GoFのデザインパターンのMementoパターンについて。 ある時点でのスナップショットを残すことによって undo,redo,snapshot,history などの機能を実現します。Memento(=記念品)にはwide interfaceとnarrow interfaceを用意します。 wide interfaceはpr…

特定の月のァイルのみ削除

$ls -l | gawk '$6 ~ /2月/ { print $9 }' | xargs rm

basename | フルパスから拡張子有り・無しのファイル名を抽出

概要 フルパスから拡張子有り・無しのファイル名を抽出するには以下のコマンドを利用します。 basename ファイルパス 拡張子 拡張子の指定をすると、拡張子を除外したファイル名を取得できます。 拡張子を指定しない場合は、拡張子も含むファイル名を取得で…