Question

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!

Was it helpful?

Solution

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)"; }
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top