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
We could integrate a dialog asking what snippets to append to ~/.bash_aliases I also have some snippets left.
Using this method you can create a dialog:
while true; do
read -p "Do you want to do that? (y/n) " yn
case $yn in
[Yy]* ) echo "true" && exit;;
[Nn]* ) echo "no" && exit;;
* ) echo "Please answer yes or no.";;
esac
done
We could leave out the base file completely, because it would make sense to reuse some shortcuts. For example "update" for every distro.
The text was updated successfully, but these errors were encountered:
Really nice project!
We could integrate a dialog asking what snippets to append to ~/.bash_aliases I also have some snippets left.
Using this method you can create a dialog:
We could leave out the base file completely, because it would make sense to reuse some shortcuts. For example "update" for every distro.
The text was updated successfully, but these errors were encountered: