我有一组要处理的文件。我无法控制文件的创建或删除。但是我知道每个文件的最后一个字节总是 xFF 并且未使用。
我想处理文件并修改最后一个字节,这样我就可以知道它们已被处理。我在 shell 中找不到任何单字节操作的具体示例。
伪代码
for file in *
do
if (lastbyteof($file) == xFF)
then
# Process this file
...
# Mark the file so we don't process it again
lastbyteof($file) = xF0
fi