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
This is the biggest Quality of Life (QoL) improvement for me:
Add this to your ~/.bash_profile to add a case-insensitive search parameter to gauth:
cat <<'TXT' >> ~/.bash_profile# Make gauth accept a case insensitive search argument.function gauth() { `which gauth` | grep -i ^${1}; }TXTsource~/.bash_profile
Then, you can run gauth normally or with a search string... It searches from the first letter of each entry. If you want to search every entry, change ^ to .*.
This is the biggest Quality of Life (QoL) improvement for me:
Add this to your
~/.bash_profile
to add a case-insensitive search parameter togauth
:Then, you can run
gauth
normally or with a search string... It searches from the first letter of each entry. If you want to search every entry, change^
to.*
.For a whole lot more QoL console improvements, check out my BashScripts framework.
The text was updated successfully, but these errors were encountered: