You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It uses wc -c which iterates over every single byte, when counting the size. I know wc is portable, but I suggest we use an alternative that does a syscall to fetch the size directly from the filesystem
The text was updated successfully, but these errors were encountered:
It uses
wc -c
which iterates over every single byte, when counting the size. I knowwc
is portable, but I suggest we use an alternative that does a syscall to fetch the size directly from the filesystemThe text was updated successfully, but these errors were encountered: