My .bash_aliases

Hey, fellow developers! So this post is more for IT people, but for other I will explain what aliases are. Bash is a terminal shell - basically a framework which can interpret your commands, execute them and give the output. Bash is only one of shells like sh , zsh , fish , kzsh , tcsh , etc. Being a developer involves quite a lot of work with a terminal, thus typing many commands a day. Typing a command takes time. Moreover, when you have to type it many times in a row or in a short period of time, it might get really annoying (at least for me 🙂). However, there is a way to speed it up and ease the typing - aliases. Aliases allow you to name a certain longer command and run it next time just by typing the name. So without further due, here is my list current aliases: Docker alias dr="docker-compose run" alias de="docker-compose exec" alias db="docker-compose build" Composer alias c='composer' alias t='c test' - ...