You are going to block this site. This will do the following:
- You will no longer see this site in searches.
- Site will no longer see your site in searches.
- Site will not be able to comment on your site profile.
- Any comments this site has posted to your profile will not be displayed.
Are you sure you want to do this?
You may have your big file split into separate files every now and again automatically. Guessing that you continue your file at the top, you may have a shell script such as: "limit=9999; lines=$(wc -l mybigfile); if [ $lines -gt $limit ]; then head -$(($lines / 2)) mybigfile > 2024-04-23.chunk; tail -$(($lines / 2)) > /tmp/a; mv /tmp/a mybigfile; fi"
If you need to view all of the text at once, try "cat * | less".
I hear what you're saying, but in practical terms my "big" text file isn't nearly big enough for that to be an issue (it's still under a MB). Thanks to wear-leveling, you would have to seriously stress-test a drive for that to become an issue, though I always back-up and would split up a file if it ever got really big.
On the anecdotal side, I've known people who have used larger OBTFs for years with zero issue. Plenty of notetaking software programs like JRNL use single text files too w/o problems, so I'm not too worried tbh. Thanks anyway, though.