Sometimes you may need to replace the timestamps from a very large log file
sed 's/[^ ]* //' file.txt
To make the change permanent to the file :
sed -i 's/[^ ]* //' file.txt
Sometimes you may need to replace the timestamps from a very large log file
sed 's/[^ ]* //' file.txt
To make the change permanent to the file :
sed -i 's/[^ ]* //' file.txt