europound Member Sep 29, 2017 #1 if there are spaces and special chars in password then command lines will fail correct? " ./dash-cli walletpassphrase your password With Spaces and%&"Spech chars? 120" " ./dash-cli masternode start-missing"
if there are spaces and special chars in password then command lines will fail correct? " ./dash-cli walletpassphrase your password With Spaces and%&"Spech chars? 120" " ./dash-cli masternode start-missing"
Figlmüller Member Oct 6, 2017 #2 Just do what you usually do with CLI options containing whitespace. Wrap them in quotes. For example: Code: #: ./someApplication --option "Parameter with whitespace" #: cp "/home/user/Folder Whitespace/" "/home/user/CopyOtherFolder/" Depending on the operating system and shell you may also escape whitespace using: Code: "\ " without the quotes Last edited: Oct 6, 2017
Just do what you usually do with CLI options containing whitespace. Wrap them in quotes. For example: Code: #: ./someApplication --option "Parameter with whitespace" #: cp "/home/user/Folder Whitespace/" "/home/user/CopyOtherFolder/" Depending on the operating system and shell you may also escape whitespace using: Code: "\ " without the quotes