This is a quite simple question that I can't find an answer to.
I have a string such as "ASDGFasd#!dasd" which I would like to enter into the command line as an argument e.g.
python test.py "ASDGFasd#!dasd"
This does not run test.py with the string provided (as I want it to), but instead returns:
bash: !dasd: event not found
How do solve this?
I am using ubuntu 14.04 LTS with python 2.7