I\'d need to be able to define an alias in a Debian shell that includes other aliases, for a project I\'m currently working on.
Let\'s look at a code example to make thi
To reuse alias in another alias use:
foobar='foo;bar'
However I would suggest you to consider using shell function to get better control over this.