I\'m looking for a way (other than \".\", \'.\', \\.) to use bash (or any other linux shell) while preventing it from parsing parts of command line. The problem seems to be
Use a here-document:
myprogramm <<'EOF' https://www.youtube.com/watch?v=oT3mCybbhf0 EOF
If you wrap the starting EOF in single quotes, bash won't interpret any special chars in the here-doc.
EOF