Bash Snippet: Aliasing a Directory of Scripts
The Atlassian SDK contains not one script, that you can put somewhere and alias it in your .bashrc, but a whole folder with “atlas-run”, “atlas-clean”, “atlas-mvn”, etc…
With a for loop, you can alias them all at once:
for filename in /home/vicox/Apps/atlassian-plugin-sdk-3.3/bin/* do alias $(basename $filename)=$filename done;

