For example if I have a setup like:
alias llaa = pwd && ll''' Will the second command work, or would I have to set it up in a more verbose manner (like ```alias llaa = pwd && ls -la```)
Submitted 3 weeks ago by Rudee@lemmy.ml to nostupidquestions@lemmy.world
For example if I have a setup like:
alias llaa = pwd && ll''' Will the second command work, or would I have to set it up in a more verbose manner (like ```alias llaa = pwd && ls -la```)
I think you don’t want the spaces around the= sign. Preferred over alias is function llaa { … }. Alias is for backwards compatibility.
Preferred over alias is function llaa { … }. Alias is for backwards compatibility.
Again what learned. What is wrong with having spaces around the equals sign, though?
I think it might not work with the spaces. But if it does, then you are fine.
You wanna use double quotes to wrap it:
alias llaa=“pwd && ll’‘’”
Yes. How about just trying it out?
sin_free_for_00_days@sopuli.xyz 3 weeks ago
Should work. Just try it out and see if you get what you want. I tried:
alias llaa='pwd && ll'
then ran
llaa
and it did what I expected, current directory and ‘ls -al’ which is aliased.