Posted: Dec 26, 2011, 9:52 am | Author: cyberryo | Category: Dialy | Tags: Linux, Server
最近のオープンソースプロジェクトだとgitがスタンダードなので気にすることはあまりないのですが、まだSVNで管理されているソースって多いです。空ディレクトリだとgitが認識してくれないので、一括して.gitignore空ファイルで空ディレクトリを埋めてくれるスクリプト。
#!/bin/sh
set -x -e -u
FIND=/usr/bin/find
if [ -x ${FIND} ]; then
for i in `${FIND} . -type d | egrep -v '\.(svn|git)'`; do
if [ -z "`/bin/ls $i`" ]; then
touch $i/.gitignore
fi;
done
exit 0
fi
exit 1
Cakephpとかだとemptyファイルですね。どちらかというと不可視ファイルよりemptyのほうが好きかな…
Posted: Aug 23, 2009, 11:15 am | Author: cyberryo | Category: Dialy | Tags: Linux
パーミッションの変更の際にとても便利。ファイル数が膨大な場合、FTPクライアントでやってるといつまでたっても終わらないのでsshでサクサク。
Read the rest of this entry »
Posted: Apr 13, 2009, 6:25 pm | Author: cyberryo | Category: Dialy | Tags: HDD, Linux, Server, Ubuntu

長年一生懸命稼働してくれたサーバーが急にクラッシュ!Web周辺は冗長化していたのでなんともありませんでしたが、いろいろとローカルファイルでなくなっては困りそうな物があったのでHDDの中身を救出。
Read the rest of this entry »
Posted: Aug 4, 2008, 1:13 am | Author: cyberryo | Category: Dialy | Tags: Linux, Server

SRPMからビルドしたdovecotが起動しないところでスッゲェハマった。。
Read the rest of this entry »
Posted: Jun 9, 2008, 1:10 pm | Author: cyberryo | Category: Dialy | Tags: Fedora, Linux

CUIの環境からWebカメラでライブ配信したい。って思っていろいろやってみた。
Read the rest of this entry »