Table of Contents

Bash tricks

Starting command in a background

Aliases cannot have & added but instead of aliases one can use functions:

 viL {
    command gvim $* & disown
 }