Is it possible to remove all lines starting with // from a txt file?
I used the command sed
sed
sed -re '/^\s*\/\//d' myfile.txt > my_new_file.txt