I figured out how to print \on a page using the echo command using
echo '\\';
This happens when used inside a function exec(). I am trying to issue this command on the command line to run csvkit:
csvclean -q \" -e ascii -z 10000000000000 file.csv
Unfortunately, I need to specify "to specify my variable. I believe that be that as it may, "slipping away properly, but nothing helps me print \.
This is what I tried:
exec("csvclean -q \" -e ascii -z 10000000000000" . " " . $csvfilename );
source
share