如何使用命令行获取 Linux 和 Windows 上的工作区(文档)路径?
我有一个脚本,运行脚本时将文件源复制到用户工作区。在这里我需要从命令行获取当前用户工作空间。你能帮我如何在 Windows 和 Linux 上获取它吗?
提前致谢 - sri
I have a script which is copy the file source to user workspace when run the script. here i need to get current user workspace from commandline. Can you help me how to get it on both Windows and Linux
Thanks in advance - sri
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
工作空间到底是什么意思?如果你指的是用户的主目录,你可以通过 Linux 上的环境变量
$HOME
获取它,我认为 Windows 上的等效目录是%HOMESHARE%
(不完全是)确定最后一个,因为我现在在具有漫游配置文件的域计算机上,并且我不确定其上是否有任何特殊设置。What exactly do you mean by Workspace? If you mean the user's home directory, you can get this via the environment variable
$HOME
on Linux, and I think the equivalent on Windows would be%HOMESHARE%
(not totally sure about the last one, because I am on a Domain computer with roaming profiles right now, and I'm not sure if there is any special setup on it.