Unable to use scp with a bash alias - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T23:32:29Z http://stackoverflow.com/feeds/question/627016 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/627016/unable-to-use-scp-with-a-bash-alias 2 Unable to use scp with a bash alias Masi 2009-03-09T16:37:08Z 2009-04-30T03:01:24Z <p>The code does not work</p> <pre><code>scp ~/Desktop/favicon.ico nameOfBashAlias:/public_html/mySite/templates/blog/ </code></pre> <p>The alias is </p> <pre><code>alias nameOfBashAlias='ssh myUsername@11.11.11.111' </code></pre> <p>How can you solve the problem?</p> <p><strong>[edit]</strong></p> <p>Is a similar code to the following code possible, like running many bashes?</p> <pre><code>scp ~/Desktop/favicon.ico (nameOfBashAlias)&gt;:/public_html/mySite/templates/blog/ </code></pre> <p>I did not get the above code to work.</p> http://stackoverflow.com/questions/627016/unable-to-use-scp-with-a-bash-alias/627022#627022 3 Answer by Jason Cohen for Unable to use scp with a bash alias Jason Cohen 2009-03-09T16:39:00Z 2009-03-09T16:39:00Z <p><code>scp</code> doesn't run bash. You would need to run this:</p> <pre><code> scp ~/Desktop/favicon.ico 11.11.11.111:/public_html/mySite/templates/blog/ </code></pre> <p>If all you have is the alias and the above code is not possible for you, consider running it like this:</p> <pre><code>nameOfBashAlias cat /public_html/mySite/templates/blog/ &gt; ~/Desktop/favicon.ico </code></pre> <p>In this way, you're actually invoking <code>ssh</code> and directing the file content to a file on disk. This can be written the other way for uploads.</p> http://stackoverflow.com/questions/627016/unable-to-use-scp-with-a-bash-alias/805198#805198 1 Answer by mataap for Unable to use scp with a bash alias mataap 2009-04-30T03:01:24Z 2009-04-30T03:01:24Z <p>Aliases are substituted when they are the <strong>first</strong> word of a bash command. Your alias appears at the start of the third word. </p> <p>I would use a shell variable for this.</p> <pre><code>blah='myUsername@11.11.11.111' scp ~/Desktop/favicon.ico ${blah}:/public_html/mySite/templates/blog/ </code></pre> <p>Btw, I think your original alias shouldn't have ssh in it. And the last code sample has a > in it that looks wrong too.</p>