Intenté abrir archivos de 2GBs con less, vim y ed pero todos tardan demasiado, así que la solución real es dividirlo en varios archivos. ```bash sed -e 's/oldstuff/newstuff/g' inputFileName > outputFileName ``` Another method is to use split. Split the file into 8 pieces and manipulate the files with a editor. After that, you reassemble the files again. ```bash split -b 53750k cat xa* > ```