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```)
  • some_guy
    link
    fedilink
    arrow-up
    7
    ·
    1 year ago

    You wanna use double quotes to wrap it:

    alias llaa=“pwd && ll’‘’”