Skip to content

Instantly share code, notes, and snippets.

View wesleyleite's full-sized avatar

Wesley Henrique Leite wesleyleite

View GitHub Profile
@wesleyleite
wesleyleite / minibash.sh
Last active August 11, 2016 21:58 — forked from merces/minibash.sh
A minimalist shell skeleton
#!/bin/bash
declare -a comandos
comandos=('listar'\
'sair')
echo "bemvindo ao minibash
use TAB para ver comandos disponiveis"
set -o vi