0
votes
how do i open a windows in a different X11 session?
I am a little unclear on the question, but here's a hypothetical setup:
I am sitting on my computer (we'll call that the root session) and I have a shell. In this case there is an environme …
0
votes
Linux command to list all available commands and aliases
Here's a function you can put in your bashrc file:
function command-search
{
oldIFS=${IFS}
IFS=":"
for p in ${PATH}
do
ls $p | grep $1
done
export IFS=${oldIFS} …
