You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 30, 2021. It is now read-only.
an alias I tried to add called echo "haww" resulted in
alias yee="echo "haww"
which is obviously a syntax error. Try to make sure the alias string starts and finishes with the right amount of " in the right position . Also, try to put a backslash (\) in front of special characters (like ").
Eg, echo "haww" -> alias yee="echo \"haww\""
an alias I tried to add called
echo "haww"resulted inwhich is obviously a syntax error. Try to make sure the alias string starts and finishes with the right amount of
"in the right position . Also, try to put a backslash (\) in front of special characters (like").Eg,
echo "haww"->alias yee="echo \"haww\""