QMAKE中有没有一种独立于平台的方式来复制文件?目前我在windows下使用的是xcopy,它可以处理德语元音。
# Simple "Release" target related copy of compiled .exe file into .compiledOutput folder
# xcopy is windows dependant, but necessary to handle german umlauts
win32 {
build_pass: CONFIG(release, debug|release) {
QMAKE_POST
我用的是Ubuntu 16.04
addicted@ADDICTED:~$ xrandr
Screen 0: minimum 8 x 8, current 1920 x 1080, maximum 16384 x 16384
DVI-I-0 disconnected (normal left inverted right x axis y axis)
DVI-I-1 disconnected (normal left inverted right x axis y axis)
DP-0 disconnected (normal left inverted right x axis y axis
假设我将挂载文件a绑定到文件b.
$ echo 'line 1' > a
$ touch b
$ mount --bind a b
两个路径上的初始文件内容都将如出一辙:
$ cat a
line 1
$ cat b
line 1
如果我连接到任何一条路径,那么新的内容将按预期的那样以两种方式进行镜像:
$ echo 'line 2' >> a
$ cat a
line 1
line 2
$ cat b
line 1
line 2
$ echo 'line 3' >> b
$ cat a
line 1
li
我正在面对这个问题,你能给我一些提示如何解决这个问题吗?
$sudo cp ~/anaconda2/lib/libhdf5* /usr/lib/x86_64-linux-gnu/
cp: not writing through dangling symlink '/usr/lib/x86_64-linux-gnu/libhdf5.so'
cp: not writing through dangling symlink '/usr/lib/x86_64-linux-gnu/libhdf5_hl.so'
谢谢