Is it possible to make a list of applications in terminal so if you enter "games" in terminal it would print a list like:
yetris
pacman4console
Is it possible to make a list of applications in terminal so if you enter "games" in terminal it would print a list like:
yetris
pacman4console
You're asking for an alias, or a Shell Script. Perform the following in your
bashrc
file to add as an alias (assuming, you're using bash):Open your
.bashrc
file with your editor:Add the following line:
You can also alias this to run a script, if you find this easier to manage:
You would then simply have the script
echo
the words in question.