Skip to content
Advertisement

Backslash inside an alias not being stored as part of its definition

I’ve got a screen sessions named BedrockServer. I’ve entered the alias like this:

JavaScript

But when I type alias, it lists it as

JavaScript

and the alias doesn’t work.


I’ve tried messing around with the quotes and using backslashes before the quotes and before the dollar sign, but nothing fixes it.

Any ideas what I’m doing wrong?

Advertisement

Answer

Inside single quotes all symbols except ' lose their special meaning. Therefore $( ) is not interpreted yet. If it was interpreted, you could nest quotes. But since it isn’t interpreted, you cannot nest quotes.

Your alias is basically

JavaScript

The unquoted string r is the same as r.

Using a function instead of an alias solves the quoting issues easily.

JavaScript

If you want to stick to an alias, there are many options to get the quoting right, for instance

JavaScript

Both commands from above execute printf each time you execute stop. This is not necessary. In the alias, you can execute it once for the definition (note the missing before $( )):

JavaScript

And for the function and/or alias, you even can drop printf entirely by using an ANSI C string:

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement