Unable to use scp with a bash alias - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T23:32:29Zhttp://stackoverflow.com/feeds/question/627016http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/627016/unable-to-use-scp-with-a-bash-alias2Unable to use scp with a bash aliasMasi2009-03-09T16:37:08Z2009-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)>:/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#6270223Answer by Jason Cohen for Unable to use scp with a bash aliasJason Cohen2009-03-09T16:39:00Z2009-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/ > ~/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#8051981Answer by mataap for Unable to use scp with a bash aliasmataap2009-04-30T03:01:24Z2009-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>