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!

有帮助吗?

解决方案

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)"; }
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top