Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to create an alias in bash like this:

alias tail_ls="ls -l $1 | tail"

Thus, if somebody types : tail_ls /etc/ it will only show the last 10 files in the directory

But $1 does not seem to work for me. Is there any way I can introduce variables in bash.

Thanks

share|improve this question

4 Answers

up vote 19 down vote accepted

I'd create a function for that, rather than alias, and then exported it, like this:

function tail_ls { ls -l "$1" | tail; }

export -f tail_ls

Note -f switch to export: it tells it that you are exporting a function. Put this in your .bashrc and you are good to go.

share|improve this answer
It's usually not necessary to export a function. – Dennis Williamson Dec 14 '10 at 10:58
2  
@Dennis, yeah, you are right, for a simple alias that won't be necessary, but it is there just in case you want to use it in some derived shell/process. – Maxim Sloyko Dec 14 '10 at 11:10
4  
In bash you need to put a semicolon ';' before the closing parent '}' when collapsing a function into a oneline. function tail_ls { ls -l "$1" | tail } does not work without a ending like tail; }. – Pablo Marin-Garcia Feb 8 '12 at 10:26

The solution of @maxim-sloyko did not work, but if the following:

  1. In ~/.bashrc add:

    sendpic () { scp "$@" mina@foo.bar.ca:/www/misc/Pictures/; }

  2. Save the file and reload

    $ source ~/.bashrc

  3. And execute:

    $ sendpic filename.jpg

original source: http://www.linuxhowtos.org/Tips%20and%20Tricks/command_aliases.htm

share|improve this answer

tail_ls() { ls -l $1 | tail }

share|improve this answer

You don't need a function to make use of a variable. I believe this works on most systems, at least it works for me:

alias psx="ps aux | grep $1"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.