ubuntu 上 /etc 的脚本命令是什么
我需要在ubuntu中通过脚本命令访问/etc。 例如,home是${user.home},tomcat home是${catalina.home},如果我想访问/etc应该是什么?另外,如果我想访问 /etc 下的自定义文件夹,我该怎么做?我必须设置一个环境变量才能访问它吗?
提前致谢....
i need to access /etc through script command in ubuntu.
for example, home is ${user.home} and tomcat home is ${catalina.home}, if i wanted to access /etc what should it be? also if i wanted to access a custom folder under /etc, how should i do it? do i have to set up an environment variable to access it?
thanks in advance....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
无需使用变量,只需使用“/etc”即可。所有 *nix 系统都有它,它几乎肯定存在。
No need to use a variable, just use "/etc". All *nix systems have it, it's pretty much guaranteed to exist.
我会声明另一个变量 ${xxxservice.etc} 因为你永远不知道什么时候有人(或某个通讯组)会将你的配置(等)目录移动到“/etc”之外的其他位置。
我的2分钱。
I would declare another variable ${xxxservice.etc} because you never know when someone (or some distribution group) will have moved your configuration (etc) directory to some other location other then "/etc".
My 2 cents.