Verifique se existe um determinado executável (todos os shells)
exists() { type -t “$1” > /dev/null 2>&1; }if exists brew; then echo ‘Homebrew found!’fiif ! exists brew; then echo ‘Homebrew not found!’fi
Continuar lendoConteúdo para você se capacitar em programação
exists() { type -t “$1” > /dev/null 2>&1; }if exists brew; then echo ‘Homebrew found!’fiif ! exists brew; then echo ‘Homebrew not found!’fi
Continuar lendoCom que frequência você se pega digitando isso? $ mkdir dirName && cd dirName Aqui está uma função que você pode inserir no seu .bashrcou.bashprofile function mkdircd () { mkdir …
Continuar lendo