[root@localhost ~]# man find
-size n[cwbkMG]
File uses n units of space. The following suffixes can be used:
'b' for 512-byte blocks (this is the default if no suffix is used)
#這是默認單位,如果單位為b或不寫單位,則按照 512Byte搜索
'c' for bytes
#搜索單位是c,按照字節搜索
'w' for two-byte words
#搜索單位是w,按照雙字節(中文)搜索
'k'for Kilobytes (units of 1024 bytes)
#按照KB單位搜索,必須是小寫的k
'M' for Megabytes (units of 1048576 bytes)
#按照MB單位搜索,必須是大寫的M
'G' for Gigabytes (units of 1073741824 bytes)
#按照GB單位搜索,必須是大寫的G
也就是說如果要按照字節來進行搜索,則需要加上“c”
[root@localhost ~]# find.-size 1207c
./anaconda-ks.cfg
#使用搜索單位c,才會按照字節搜索