The dash command is unique to the program I feed with this Export command.
It is .zshrc
Every time I modify the .zshrc file I restart terminal. Terminal executes other commands in the .zshrc file just fine, but not Export (" export x=' y ' ") commands. This is the one thing it doesn't seem to like now since switching systems.
Randall_2023: IIRC this process didn't work with aliases in the past, but I could try again. IIRC this was because there had to be a variable ("y" in the above example) entered in the command line not found in the alias/export command. Basically a version of "load file in directory x/y/z"/file-name with "/file-name" something you enter in the command line after the export command. The export command just simplifies the first, much longer and invariant, part. Aliases are good (again, IIRC, its been a while since I've messed around with this) if you have the full "x= a b c" sequence you just want a shortcut to, not if "a b c" is different every time and you're only shorting the "x=" part of the command.
PS: I just tried the same sequence as an alias. Nope.