Domanda

In terminal, if i run echo $(date), it will give me the current date.

However, when i put the command in .bash_profile as an alias

alias dt="echo $(date)"

it will give me stale date. Namely, when i run dt, it will always give me the same date.

Any workaround? Thanks!

È stato utile?

Soluzione

You need to quote it to prevent expansion:

alias dt="echo \$(date)"
alias dt="echo \"\$(date)\""  ## (internally quoted)

Or just use a single quote:

alias dt='echo $(date)'
alias dt='echo "$(date)"'  ## (internally quoted)

And better yet use a function:

dt() { echo "$(date)"; }
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top