我想创建一个别名作为访问日志文件的快捷方式。我想要的目录是月份和日期。假设路径的第一部分是 /some/path,我想将“date +%m%d”的结果附加到路径中。例如,输入别名“gotologs”(alias gotologs='cd /some/path/ this is where I need help')将导致 cd /some/path/0104
如果有必要的话,我在家使用 bash,在工作时使用 korn shell
提前致谢
答案1
干得好
alias gotologs='cd /some/path/$(date +%m%d)'