Skip to content

Instantly share code, notes, and snippets.

@Rennbon
Forked from arunoda/gist:7790979
Created August 28, 2020 05:40
Show Gist options
  • Save Rennbon/71a05aa5b7a35e58042a9e8e23d30af3 to your computer and use it in GitHub Desktop.
Save Rennbon/71a05aa5b7a35e58042a9e8e23d30af3 to your computer and use it in GitHub Desktop.

Revisions

  1. @arunoda arunoda revised this gist May 5, 2015. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -14,7 +14,7 @@ Installing on OS X is tricky, since there is no official build for it. Before yo

    [Homebrew](http://brew.sh/) does not allow you to install `sshpass` by default. But you can use the following unofficial brew package for that.

    brew install https://raw.github.com/eugeneoden/homebrew/eca9de1/Library/Formula/sshpass.rb
    brew install https://raw.githubusercontent.com/kadwanev/bigboybrew/master/Library/Formula/sshpass.rb

    ### Installing from the Source

  2. @arunoda arunoda revised this gist Dec 4, 2013. 1 changed file with 2 additions and 2 deletions.
    4 changes: 2 additions & 2 deletions gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -1,6 +1,6 @@
    # Installing SSHPASS

    SSH Pass is a very simple utility allows you to provide the ssh password, without using the prompt. This will very helpful for scripting. SSHPass is not good to use in multi-user environment. If you use SSHPass on your development machine, it don't do anything evil.
    [SSHPass](http://www.cyberciti.biz/faq/noninteractive-shell-script-ssh-password-provider/) is a tiny utility, which allows you to provide the ssh password without using the prompt. This will very helpful for scripting. SSHPass is not good to use in multi-user environment. If you use SSHPass on your development machine, it don't do anything evil.

    ## Installing on Ubuntu

    @@ -12,7 +12,7 @@ Installing on OS X is tricky, since there is no official build for it. Before yo

    ### Installing with Homebrew

    Homebrew does not allow you to install `sshpass` by default. But you can use the following unofficial brew package for that.
    [Homebrew](http://brew.sh/) does not allow you to install `sshpass` by default. But you can use the following unofficial brew package for that.

    brew install https://raw.github.com/eugeneoden/homebrew/eca9de1/Library/Formula/sshpass.rb

  3. @arunoda arunoda revised this gist Dec 4, 2013. 1 changed file with 11 additions and 1 deletion.
    12 changes: 11 additions & 1 deletion gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -8,11 +8,21 @@ SSH Pass is a very simple utility allows you to provide the ssh password, withou

    ## Installing on OS X

    Installing on OS X is tricky, since there is no official build for it.
    Installing on OS X is tricky, since there is no official build for it. Before you get started, you need [install xcode and command line tools](http://guide.macports.org/chunked/installing.xcode.html).

    ### Installing with Homebrew

    Homebrew does not allow you to install `sshpass` by default. But you can use the following unofficial brew package for that.

    brew install https://raw.github.com/eugeneoden/homebrew/eca9de1/Library/Formula/sshpass.rb

    ### Installing from the Source

    * Download the [Source Code](http://sourceforge.net/projects/sshpass/)
    * Extract it and cd into the directory
    * `./configure`
    * `sudo make install`




  4. @arunoda arunoda created this gist Dec 4, 2013.
    18 changes: 18 additions & 0 deletions gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,18 @@
    # Installing SSHPASS

    SSH Pass is a very simple utility allows you to provide the ssh password, without using the prompt. This will very helpful for scripting. SSHPass is not good to use in multi-user environment. If you use SSHPass on your development machine, it don't do anything evil.

    ## Installing on Ubuntu

    apt-get install sshpass

    ## Installing on OS X

    Installing on OS X is tricky, since there is no official build for it.

    ### Installing with Homebrew

    Homebrew does not allow you to install `sshpass` by default. But you can use the following unofficial brew package for that.

    brew install https://raw.github.com/eugeneoden/homebrew/eca9de1/Library/Formula/sshpass.rb