diff --git a/.devBash b/.devBash index d4abee6..bd38ffe 100644 --- a/.devBash +++ b/.devBash @@ -43,4 +43,10 @@ alias .='cl ..' alias ..='cl ../..' alias ...='cl ../../..' +# Chat abilities (if multiple people are ssh'd in) +function chat { + echo $(whoami): "'$*'" >> /tmp/chat.log +} +alias openChat="echo System: $(whoami) joined >> /tmp/chat.log && tail -f /tmp/chat.log" +alias s=chat