Help for this page

Select Code to Download


  1. or download this
    /usr/bin/ssh hostname "echo test\$ing | /usr/bin/passwd --stdin bob"
    
  2. or download this
    /.../bin/sh -c '/usr/bin/ssh hostname "echo test\$ing | /usr/bin/passw
    +d --stdin bob"'
    
  3. or download this
    /usr/bin/ssh hostname "echo test\$ing | /usr/bin/passwd --stdin bob"
    
  4. or download this
    echo test$ing | /usr/bin/passwd --stdin bob
    
  5. or download this
    $ echo 'test\$ing'
    test\$ing
    $ echo "test\$ing"
    test$ing
    
  6. or download this
      my $set_password = '/usr/bin/ssh ' . $master_host . " \"echo \Q$new_
    +password\E | /usr/bin/passwd --stdin \Q$username\E\"";
    
  7. or download this
      my $set_password = '/usr/bin/ssh ' . $master_host . " 'echo \Q$new_p
    +assword\E | /usr/bin/passwd --stdin \Q$username\E'";