How to rename a file name named “.” [closed]

孤人 提交于 2019-12-11 19:49:24

问题


I have downloaded a large file about 2gigs from remote server but by mistake I gave it name . (dot).

How can I rename it using linux commands ?


回答1:


I don't think you really have named it .. Or at least, you cannot have done so successfully.

The name . is reserved for the current directory. So either it has been given another name implicitly, or it has been removed/discarded.

Try

find -size +1536M -ls

to find if there is any file with this size, and if so, verify if it can be the file you look for.



来源:https://stackoverflow.com/questions/23512004/how-to-rename-a-file-name-named

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!