Ubuntu 服务器 14.04 中的 R - 将文件写入 samba 共享,其中目录受 user/pass 保护
R in Ubuntu Server 14.04 - Writing file to a samba sharing in which a directory is protected by user/pass
我想知道是否可以写入受保护的 samba 目录,以及另一个 user/pass 的内部目录。我一直在寻找具有这些功能的 R 包,但我还没有找到它。现在我正在使用 write()
函数。在此功能的文档中,它说:
Arguments:
x : The data to be written out, usually an atomic vector.
file : A connection, or a character string naming the file to write to. If "", print to the standard output connection. If it is "|cmd", the output is piped to the command given by ‘cmd’.
我不明白写入“|cmd”时属性“文件”是否会在 Ubuntu 服务器或其他东西中启动终端,但我无法让它工作
希望你今天过得愉快!
我发现可以通过 Ubuntu 中的 shell 脚本来完成。命令为write(somefile, file = "|sh shellWriteSamba.sh")
编辑:完整的解决方案在
我想知道是否可以写入受保护的 samba 目录,以及另一个 user/pass 的内部目录。我一直在寻找具有这些功能的 R 包,但我还没有找到它。现在我正在使用 write()
函数。在此功能的文档中,它说:
Arguments:
x : The data to be written out, usually an atomic vector.
file : A connection, or a character string naming the file to write to. If "", print to the standard output connection. If it is "|cmd", the output is piped to the command given by ‘cmd’.
我不明白写入“|cmd”时属性“文件”是否会在 Ubuntu 服务器或其他东西中启动终端,但我无法让它工作
希望你今天过得愉快!
我发现可以通过 Ubuntu 中的 shell 脚本来完成。命令为write(somefile, file = "|sh shellWriteSamba.sh")
编辑:完整的解决方案在