How to convert a hidden file to normal visible file?
Answers were Sorted based on User's Feedback
Answer / suitable
In unix hidden files are those files whose names are started
wiht .(dot). so if you what to convert hidden file to normal
visible file just rename those files and remove the leading
.(dot) form its name.
| Is This Answer Correct ? | 23 Yes | 4 No |
Answer / sourisengupta
Yogesh you must be knowing that its a unix question....and
your ans is applicable for windows
| Is This Answer Correct ? | 17 Yes | 1 No |
Answer / pavitra
Do ls -a....to get the hidden file name...
$mv .file_name new_file
new_file is not hidden now...
you can list this file by just ls...
_
Pavitra
| Is This Answer Correct ? | 11 Yes | 2 No |
Answer / shan, nmc
Yes. We have a command for that as well. Use below command
to make the normal file.
$mv .aaa bbb.txt
Here, aaa is hidden file name and bbb.txt is our new file
name. One thing is that we must remember the hidden file
name, then only we will be able to convert into normal file.
Hope you are clear.
Thx
Shan, NMC
| Is This Answer Correct ? | 10 Yes | 3 No |
Answer / xxx
Yogesh ...tuo sala parama magiha taa..abe unix auu windows
bhitare kana difference tate jana nahi...chup magihaaaaaa
| Is This Answer Correct ? | 7 Yes | 2 No |
Answer / satish
mv .foo foo
This is the only correct one without changing file name
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / shan, nmc
In case, you want to see the all hidden file then you will
use below command.
$ls -Ra
Shan, NMC
| Is This Answer Correct ? | 0 Yes | 7 No |
Answer / yogesh
just go to tool in the menu bar select folder option then
view and section shaw hidden files and apply and enjoy
| Is This Answer Correct ? | 2 Yes | 56 No |
Is there any method to erase all files in the current directory, along with its all sub-directories, by using only one command?
What does #!/ Bin sh do?
What is the functionality of a top command?
The command grep first second third /usr/you/myfile a) prints lines containing the words first, second or third from the file /usr/you/myfile b) searches for lines containing the pattern first in the files second, third, and /usr/you/myfile and prints them c) searches the files /usr/you/myfiel and third for lines containing the words first or second and prints them d) replaces the word first with the word second in the files third and /usr/you/myfile e) None of the above
What is ctrl d?
Sorry to all Technical person for mistake of Question. Now i am post currect question Why copied file permission is changed in destination. When i give all permission i.e 777 to file and copy that to other location in destination the permission is 755. But if give permission 555 in destination that file permission is 555 and if give permission 444 to file after copy in destination the file permission is 444. These all are happening in normal user. How the umask value is calculate here really i am not understand. Please write the proper answer. Thanks in Advance
How to check whether some services are running in another server or not? Suppose i am currently in a server named A.I want to check whether some services are running in server B without logging into the server B.
3 Answers Amazon, MBA, Syntel, TCS, Unisys,
what are the different commands used to view the contents of a file?
How does the user view the contents of a text file in UNIX?
Enlist some filename manipulation commands in unix.
what is the command to print last 8 lines of any text file.
How do you change file permissions and ownership in Unix?