HOME - Recent Changes - Search:

Academic Work


Personal

* pot de départ


dblp


(:twitter:)

-----

[ edit | logout ]
[ help | sandbox | passwd ]

Alias with argument(s)

#############################

Question

How to pass an argument / several arguments to an alias in Bash?

Answer #1

Use a shell function instead of an alias.

Example:

Put it in your .bashrc:

function hi()     { echo hi "$1"; }
function hi_all() { echo hi "$@"; }
jabba@hoth:~$ hi laci
hi laci
jabba@hoth:~$ hi_all jabba laci
hi jabba laci

Answer #2

Write a shell script instead of an alias.

Example:

Put it in a file called hi.sh:

#!/usr/bin/bash

echo hi "$1"
jabba@hoth:~$ ./hi.sh lacus
hi lacus
Cloud City


anime | bash | blogs | bsd | c/c++ | c64 | calc | comics | convert | cube | del.icio.us | digg | east | eBooks | egeszseg | elite | firefox | flash | fun | games | gimp | google | groovy | hardware | hit&run | howto | java | javascript | knife | lang | latex | liferay | linux | lovecraft | magyar | maths | movies | music | p2p | perl | pdf | photoshop | php | pmwiki | prog | python | radio | recept | rts | scala | scene | sci-fi | scripting | security | shell | space | súlyos | telephone | torrente | translate | ubuntu | vim | wallpapers | webutils | wikis | windows


Blogs and Dev.

* Ubuntu Incident
* Python Adventures
* me @ GitHub


Places

Debrecen | France | Hungary | Montreal | Nancy


Notes

full circle | km


Hobby Projects

* Jabba's Codes
* PmWiki
* Firefox
* PHP
* JavaScript
* Scriptorium
* Tutorials
* me @ GitHub


Quick Links


[ edit ]

View - Edit - History - Attach - Print *** Report - Recent Changes - Search
Page last modified on 2008 June 03, 01:17