gistlib
main.mfid = fopen('your_file.txt', 'r'); while true tline = fgetl(fid); if ~ischar(tline) break; end disp(tline); end fclose(fid); 151 chars12 lines
fid = fopen('your_file.txt', 'r'); while true tline = fgetl(fid); if ~ischar(tline) break; end disp(tline); end fclose(fid);
gistlibby LogSnag