Reputation: 2135
I have two 100% identical empty .sh
shell script files on Mac:
The contents of encrypt.sh
and its hexdump:
The contents of decrypt.sh
and its hexdump:
The file info window of encrypt.sh
:
The file info window of decrypt.sh
:
They have the exact same hexdump, then how is it possible that they have different sizes?
Upvotes: 0
Views: 332
Reputation: 30823
Mac OS X file system is implementing forks, so the larger one is likely having something specific stored in its resource fork.
Use ls -l@
to get more details.
Upvotes: 1