私の作業ディレクトリには2つのファイルがあります。
test.txt
そしてimg.jpg
test.txt
キャラクター特殊ファイルです
img.jpg
ブロックは特殊ファイルです
シェルスクリプトを使用して、これらのファイルが文字特殊ファイルかブロック特殊ファイルかを確認したいと思います。
私は次の2つのシェルスクリプトを書きました。
最初 -
#! /bin/bash
echo -e "Enter file name: \c"
read file_name
if [ -c $file_name ]
then
echo Character special file $file_name found
else
echo Character special file $file_name not found
入力する:
test.txt
出力:
Character special file test.txt not found
第二 -
#! /bin/bash
echo -e "Enter file name: \c"
read file_name
if [ -b $file_name ]
then
echo Block special file $file_name found
else
echo Block special file $file_name not found
入力する:
img.jpg
出力:
Block special file img.jpg not found
私はどこで間違っていますか?
答え1
あなたの家はやや間違っています。ブロック特殊ファイルは、ハードディスクパーティション、メモリデバイスなどを意味します。たとえば、私のハードドライブのデフォルトのパーティションはです/dev/sda1
。テストされた(別名[
)-b
フラグはこれに対して機能しますが、通常のファイルとして扱われる写真ファイルでは機能しません。
$ test -b ./Pictures/NOTEBOOKS/8.jpg && echo "It's a block device" || echo "Not a block device"
Not a block device
$ test -b /dev/sda1 && echo "It's a block device" || echo "Not a block device"
It's a block device
ttyやシリアルコンソールなどの文字デバイス。たとえば、
$ test -c /dev/tty1 && echo "It's a character device" || echo "Not a character dev"
It's a character device
stat
次の終了ステータスではなく、テキスト形式でほぼ同じ情報を通知できますtest
。
$ stat --printf "%n\t%F\n" /dev/tty1 /dev/sda1 ./mytext.txt ./Pictures/NOTEBOOKS/8.jpg
/dev/tty1 character special file
/dev/sda1 block special file
./mytext.txt regular file
./Pictures/NOTEBOOKS/8.jpg regular file
あなたがする必要があるのは、file
コマンドを使用してその出力を確認することです:
$ file ./Pictures/NOTEBOOKS/8.jpg
./Pictures/NOTEBOOKS/8.jpg: JPEG image data, JFIF standard 1.02, aspect ratio, density 100x100, segment length 16, baseline, precision 8, 750x750, frames 3
$ file /dev/sda1
/dev/sda1: block special (8/1)
$ file mytext.txt
mytext.txt: ASCII text
答え2
$ cat test-c.bash
#! /bin/bash
echo -e "Enter file name: \c"
read file_name
if [ -c $file_name ]
then
echo Character special file $file_name found
else
echo Character special file $file_name not found
fi
$ bash test-c.bash
Enter file name: /dev/tty
Character special file /dev/tty found
$ cat test-b.bash
#! /bin/bash
echo -e "Enter file name: \c"
read file_name
if [ -b $file_name ]
then
echo Block special file $file_name found
else
echo Block special file $file_name not found
fi
$ bash test-b.bash
Enter file name: /dev/sda
Block special file /dev/sda found
プログラムから欠落しているものを除いて、fi
すべてが期待どおりに機能します。
あなたの仮説は...
test.txt は文字特殊ファイルです。
img.jpg はブロック特殊ファイルです。
...これを達成するために作成しなかった場合(例:mknod
.
(望みよりman mknod
)
したがって、テストファイルが名前からわかるように、通常の一般的な(一般的な)ファイルです。
何をお探しですか?
DOSishオペレーティングシステムのようにテキストファイルとバイナリファイルを区別する方法はありますか?
これはCP/M時代とそれ以前の時代の遺物です。ファイルシステムはファイルサイズをブロック単位で追跡するため、テキストファイルには有効なテキストの終わりを示すためにファイル終了文字が必要です。
その結果、バイナリとテキストファイルの関連付けは異なる方法で行う必要があります。
Unixishファイルシステムはブロック単位のファイルサイズと使用されている実際のバイト数を追跡するため、テキストの終わりを示すために特殊な末尾文字を使用する必要はありません。
ファイルの内部コンテンツを推測するには、次のfile
コマンドを使用できます。
$ file 20170130-094911-GMT.png
20170130-094911-GMT.png: PNG image data, 744 x 418, 8-bit/color RGBA, non-interlaced
$ file calendar.txt
calendar.txt: ASCII text
はい!