How to pass argument with exclamation mark on Linux?

39,845

Solution 1

You should be able to simply wrap things in single quotes in the shell.

$ emailsender.py -u username -p 'pass!!'

Solution 2

You need to escape it with \ or quote it with single quotes, otherwise your shell interprets it.

emailsender.py -u username -p pass\!\!

or

emailsender.py -u username -p 'pass!!'

Solution 3

As mentioned by others, this issue isn't specific to Python, but is caused by how you're passing the password parameter to the script.

You'll want to wrap the password string in single quotes to make sure that it's passed to the script exactly as you type it, and isn't interpreted by the shell.

You could do this for the username too, if there's the possibility that it includes an exclamation mark, or other special character.

For example:

emailsender.py -u 'username' -p 'pass!!'
Share:
39,845

Related videos on Youtube

salafek
Author by

salafek

Updated on September 19, 2020

Comments

  • salafek
    salafek almost 4 years

    I have a simple Python script that receives username and password as arguments, but my password contains two exclamation marks. When I call my script like

    salafek@dellboy:~/Desktop/$ emailsender.py -u username -p pass!!
    

    a command that I entered earlier replaces the exclamation marks:

    salafek@dellboy:~/Desktop/$emailsender.py -u username -p "passemailsender.py -u username -p passwget wget http://www.crobot.com.hr/templog"
    

    I can escape exclamation marks with backslash (\), but my password changes.

    Is there solution for this, how can I escape exclamation marks without changing my password?

    • adamJLev
      adamJLev almost 14 years
      The second command doesn't make much sense, what are you trying to do there?? Specially the passemailsender.py -u username -p passwget wget ... part
    • Mad Scientist
      Mad Scientist almost 14 years
      !! is substituted by the shell, it is replaced by the last executed command. This is not specific for python.
    • Joe Kington
      Joe Kington almost 14 years
      @Infinity - Bash interprets "!!" as the last command you entered. Thus, when he enters the command without escaping his password using single quotes or backslashes, bash inserts his last command where the "!!" was.
  • pr00thmatic
    pr00thmatic about 9 years
    just for the record, escaping works ok if you are not double quoting the argument. Otherwise, the '\' will be written to the file literally.