I have tried notepad++ and VIM.
How can I open a 3GB text file?
Collapse
X
-
Tags: None
-
Comment
-
Yeah, Notepad++ has a 2Gb limit I think.
Try 010Editor
Join the BEST cam affiliate program on the internet!
I've referred over $1.7mil in spending this past year, you should join in.

I make a lot more money in the medical field in a lab now, fuck you guys. Don't ask me to come back, but do join Chaturbate in my sig, it still makes bank without me touching shit for years..
Comment
-
Comment
-
Simple Text Splitter
Very simple text splitter that can split text based files (txt, log, srt etc.) into smaller chunks.
Simple Text Splitter - Split Large Text Files In Windows 8 & 7
Simple Text Splitter download | SourceForge.netThings that make ya go hmmmm....Comment
-
I will try this, sounds like big dump.
Actually vim ended up opening the file but it took like 10 minutes.Comment
-
-
-
you can.. ROLL TUBE!WARNING: Stay Away From Marlboroack aka aka Brandon Ackerman
http://gfy.com/21169705-post8.html
Donny Long is Felon, Stalker, Scammer & Coward
http://www.ripoffreport.com/reports/...lon-int-761244
Comment
-
You should load it into MySQL then you can run queries.Crazy fast VPS for $10 a month. Try with $20 free creditComment
-
GNU/LINUX Terminal
Windows is soooo lame...Code:#cat [file]|more #grep -i "word" file|more case insensitive or #grep -c "word" file count
use your server
or just open a shell
Windows command prompt PowerShell (terminal)
(page down is the space bar or down arrow line to line GNU/LINUX or Windows)Code:cd \location\ ...\ > get-content filename |more cd \location\ ...\ >sls word .\filename |more
Comment
-
Comment
-
-
Comment
-
-
you are not alone.,
try https://www.textpad.com/
or VIM , idk why VIM didnt work for you, it always works for me , with huge files.Comment
-
Comment
-
I'll bet he's making a 2 column website with everyone's name where you can buy individual info or by bulk, but then he'll get overwhelmed with over 1 sale/day that he has to manually process and give it up..
Join the BEST cam affiliate program on the internet!
I've referred over $1.7mil in spending this past year, you should join in.

I make a lot more money in the medical field in a lab now, fuck you guys. Don't ask me to come back, but do join Chaturbate in my sig, it still makes bank without me touching shit for years..
Comment
-


then be sued and in a WIPO Domain resolution arbitration.
What's phpMyAdmin? LOL -- something I have no use for.
SSH or open a Terminal then log in to the MYSQL daemon direct
Comment
-
Join the BEST cam affiliate program on the internet!
I've referred over $1.7mil in spending this past year, you should join in.

I make a lot more money in the medical field in a lab now, fuck you guys. Don't ask me to come back, but do join Chaturbate in my sig, it still makes bank without me touching shit for years..
Comment
-
-
-
Or an even simpler option is put the location of the file into your browser, ie:
E:/mine/info/123.txt
or
file:///E:/mine/info/123.txt
Or to find the file simply type the location of the file hard drive into your browser. Ie:
E:/
You can view most files types this way.Comment
-
Try using EmEditor...Make a bank with Chaturbate - the best selling webcam program
Ads that can't be block with AdBlockers !!! /// Best paying popup program (Bitcoin payouts) !!!
PHP, MySql, Smarty, CodeIgniter, Laravel, WordPress, NATS... fixing stuff, server migrations & optimizations... My ICQ: 27429884 | Email:
Comment
-
Idiot. Try opening a 3gb file this way and let me know how you get on.Comment
-
let us know if you find your fathers name in that Ashley Madison dump file
-= Krampus Productions =-
Comment
-
Comment
-
GUI add a lot of taxing processing to anything, just like trying to open a directory with thousands of files, same goes for open such a large file in a program.Comment
-
I use vim for large file on windows
Scarlett Content - Adult Content Provider - High Quality Adult Stock Content for your Websites, Mobile Media and Print.
Over 3 Million Images (14,000 photo sets) over 5000 Videos - Many Niches, US-2257, Awesome Prices.
Over 40 years in the adult industry.
[email protected] Follow us on twitter.Comment
-
Split it into 5 smaller text files in PHP!
<?
$thefile = 'mytext.txt';
$fp = fopen($thefile, 'r');
$text = fread( $fp, filesize($thefile));
fclose($fp);
$textsize = floor(strlen($text)/5);
$f1 = substr($text, 0, $textsize);
$f2 = substr($text, $textsize,$textsize);
$f3 = substr($text, $textsize*2,$textsize);
$f4 = substr($text, $textsize*3,$textsize);
$f5 = substr($text, $textsize*4,$textsize);
$fp = fopen('1' . $thefile , 'w');
fwrite($fp, $f1);
fclose($fp);
$fp = fopen('2' . $thefile , 'w');
fwrite($fp, $f2);
fclose($fp);
$fp = fopen('3' . $thefile , 'w');
fwrite($fp, $f3);
fclose($fp);
$fp = fopen('4' . $thefile , 'w');
fwrite($fp, $f4);
fclose($fp);
$fp = fopen('5' . $thefile , 'w');
fwrite($fp, $f5);
fclose($fp);
echo "SMALL FILESIZE = " . $textsize;
?>Comment
-


Comment