在终端中查看日期的函数保存在哪里?

在终端中查看日期的函数保存在哪里?

我的意思是,~/.bashrc 中没有任何可以用于显示日期的函数。

答案1

您的 .bashrc 或 .profile 中有实现不同功能的函数和别名,并且您在 bash(或其他 shell)中拥有内置函数。一些功能在 /bin、/usr/bin 或其他地方作为二进制程序实现。

您可以使用命令type来显示“程序”的位置:

$ type date
date is /bin/date
$ type test
test is a shell builtin
$ type ls
ls is aliased to 'ls --color=auto'
$ type cd
cd is a shell builtin
$ type type
type is a shell builtin

相关内容