Hello, the next program doesn't work. It should print all the lines except the ones starting with '#'.
It does work in perl :
$ perl -ne 'print unless /^\s*\#/' a.cc
why ?
Thank you
aitor
-------------------
// a.cc
#include<iostream>
#include<fstream>
#include<string>
#include<vector>
#include