Mc Jorch Asked: 2018-02-13 04:48:01 +0800 CST2018-02-13 04:48:01 +0800 CST 2018-02-13 04:48:01 +0800 CST How to copy files to a hidden folder [duplicate] 772 I want to copy a visible file to a hidden folder. In this case, I want to copy a program folder to the /.wine folder wine hidden-files copy 2 Answers Voted Best Answer Félicien 2018-02-13T05:22:15+08:002018-02-13T05:22:15+08:00 Copying to a hidden folder is the same as copying to a visible one, except that the folder name starts with a '.' cp /path/to/file ~/.wine If you want to copy a folder, don't forget to add "-r" cp -r /path/to/folder .wine An0n 2018-02-13T06:31:02+08:002018-02-13T06:31:02+08:00 If you want to copy files to hidden wine folder: cp -r /path/to/folder/ /home/user/.wine/ If you want to move files to hidden wine folder: mv -f /path/to/folder/* /home/user/.wine/
Copying to a hidden folder is the same as copying to a visible one, except that the folder name starts with a '.'
If you want to copy a folder, don't forget to add "-r"
If you want to copy files to hidden wine folder:
If you want to move files to hidden wine folder: