トップ «前の日記(2014-05-22) 最新 次の日記(2014-05-24)» 編集

ヨタの日々

2001|08|09|10|11|12|
2002|01|02|03|04|05|06|07|08|09|10|11|12|
2003|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|
2005|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|
2007|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|
2009|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|
2011|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|
2013|01|02|03|04|05|06|07|08|09|10|11|12|
2014|01|02|03|04|05|06|07|08|09|10|11|12|
2015|01|02|03|04|05|06|07|08|09|10|11|12|
2016|01|02|03|04|05|06|07|08|09|10|11|12|
2017|01|02|03|04|05|06|07|08|09|10|11|12|
2018|01|02|03|04|05|06|07|08|09|10|11|12|
2019|01|02|03|04|05|06|07|08|09|10|11|12|
2020|01|02|03|04|05|06|07|08|09|10|11|12|
2021|01|02|03|04|05|06|07|08|09|10|11|12|
2022|01|02|03|04|05|06|07|08|09|10|11|12|
2023|01|02|03|04|05|06|07|08|12|
2024|01|02|03|04|

2014-05-23 :-(

_ 午前

0530 起床

0700 食堂

0830 出勤 && デバッグしTARI

_ 午後

1300 デバッグしTARI

_

1700 退勤

1900 ぐったり

2130 飯。金曜日カレー

IMG_4922

IMG_4925

先日 大洗へ行ったとき[ 20140330#p01 ]の米をまだ食べていなかった。大洗の米。

IMG_4924

_ 「不自由な Microsoft Windows」

すごく

直訳したような

その文章が

いいね

_ [艦これ]艦これ

本日のメンテナンスにより羽黒が改二実装されたので改二にした。龍驤も改二実装されたけど龍驤のレベルは 39 ですゆえ。

4-4 出撃。3 回出撃して 2 回撃破。あと 2 回。

_ /etc/MAKEDEV

cd ~
/etc/MAKEDEV all

とやったけどどうも /dev にデバイスファイルが作成されないなー おかしいなー なんでだろうなーと思って中身を見てみた

usage()
{
        cat 1>&2 << _USAGE_
Usage: ${0##*/} [-fMsu] [-m mknod] [-p pax] [-t mtree] special [...]
        Create listed special devices.  Options:
        -f              Force permissions to be updated on existing devices.
        -M              Create memory file system.
        -m mknod        Name of mknod(8) program.  [\$TOOL_MKNOD or mknod]
        -p pax          Name of pax(1) program.  [\$TOOL_PAX or pax]
        -s              Generate mtree(8) specfile instead of creating devices.
        -t mtree        Name of mtree(8) program.  [\$TOOL_MTREE or mtree]
        -u              Don't re-create devices that already exist.

_USAGE_
        exit 1
}

 ${0##*/}

嫌な予感が

oh

カレントディレクトリに作成されるのか。

ええとええと

find - NetBSD Manual Pages

     -type t
             True if the file is of the specified type.  Possible file types
             are as follows:

                   b     block special
                   c     character special
                   d     directory
                   f     regular file
                   l     symbolic link
                   p     FIFO
                   s     socket
                   W     whiteout
                   w     whiteout

まあとりあえずこれで

find ./ -type b | while read f; do rm -f $f; done
find ./ -type c | while read f; do rm -f $f; done