I am trying to receive using Python command line arguments but i have some problems in receiving & along with arguments
script
import sys
START_D = sys.argv[1]
print START_D
This works fine
python test.py sdsss
sdsss
But if i use & it is giving some random stuffs
python test.py sds&ss
[1] 8682
sds
Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port
u_seq ESTAB 0 0 @0001b 25095 * 25096
u_seq ESTAB 0 0 @0001a 25086 * 25087
u_seq ESTAB 0 0 @00020 74036
.
.
.
.
.
tcp ESTAB 0 0 2405:205:830d:2a38:492a:5a32:cffe:eca1:34196 2404:6800:4009:807::2003:https
[1]+ Done python test.py sds
What was the issuse how can i fix it and i want to use & in parameters so how can i use it along when i send parameters?