Dot in front of file
If there is a file and the filename starts with a dot in front of it does th ast mean that you created the file and you are hiding stuff in it or can the files get created on their own without you creating the filename. I'm just saying I have files with dots in front of them but I didnt create them can anyone answer please and thank you.
filenames
New contributor
add a comment |
If there is a file and the filename starts with a dot in front of it does th ast mean that you created the file and you are hiding stuff in it or can the files get created on their own without you creating the filename. I'm just saying I have files with dots in front of them but I didnt create them can anyone answer please and thank you.
filenames
New contributor
Hello and welcome to the U&L stack exchange site! Please read over the help center to get more information on how to best post to this site. To get to your question, dotfiles or files starting with a dot character are hidden files. They can used for configuration files for applications you have installed or as profiles for your user settings. What files are you having an issue with? Please edit your post to include more context. Thank you!
– kemotep
6 hours ago
I'm not having a problem with mybfilea never looked at my files I'm getting accused of hiding things in files and also that I have hidden apps and I've never downloaded hidden apps
– Regina Saucedo
6 hours ago
3
Possible duplicate of Filename dot in front
– Stephen Kitt
5 hours ago
Don't worry and don't let people accuse you of doing covert operations on your file system. Everyone can type inls -alF
in a command shell, and all hiding goes away. BTW you might want to usealias l='ls --color=tty -alF'
and with it just type one singlel
to see it all. Tryecho 'set nu' > .vimrc
and voila, you've line numbers in yourvi
orvim
editor. That's all there is to it with "hidden" files.
– Micha
5 hours ago
add a comment |
If there is a file and the filename starts with a dot in front of it does th ast mean that you created the file and you are hiding stuff in it or can the files get created on their own without you creating the filename. I'm just saying I have files with dots in front of them but I didnt create them can anyone answer please and thank you.
filenames
New contributor
If there is a file and the filename starts with a dot in front of it does th ast mean that you created the file and you are hiding stuff in it or can the files get created on their own without you creating the filename. I'm just saying I have files with dots in front of them but I didnt create them can anyone answer please and thank you.
filenames
filenames
New contributor
New contributor
New contributor
asked 6 hours ago
Regina SaucedoRegina Saucedo
121
121
New contributor
New contributor
Hello and welcome to the U&L stack exchange site! Please read over the help center to get more information on how to best post to this site. To get to your question, dotfiles or files starting with a dot character are hidden files. They can used for configuration files for applications you have installed or as profiles for your user settings. What files are you having an issue with? Please edit your post to include more context. Thank you!
– kemotep
6 hours ago
I'm not having a problem with mybfilea never looked at my files I'm getting accused of hiding things in files and also that I have hidden apps and I've never downloaded hidden apps
– Regina Saucedo
6 hours ago
3
Possible duplicate of Filename dot in front
– Stephen Kitt
5 hours ago
Don't worry and don't let people accuse you of doing covert operations on your file system. Everyone can type inls -alF
in a command shell, and all hiding goes away. BTW you might want to usealias l='ls --color=tty -alF'
and with it just type one singlel
to see it all. Tryecho 'set nu' > .vimrc
and voila, you've line numbers in yourvi
orvim
editor. That's all there is to it with "hidden" files.
– Micha
5 hours ago
add a comment |
Hello and welcome to the U&L stack exchange site! Please read over the help center to get more information on how to best post to this site. To get to your question, dotfiles or files starting with a dot character are hidden files. They can used for configuration files for applications you have installed or as profiles for your user settings. What files are you having an issue with? Please edit your post to include more context. Thank you!
– kemotep
6 hours ago
I'm not having a problem with mybfilea never looked at my files I'm getting accused of hiding things in files and also that I have hidden apps and I've never downloaded hidden apps
– Regina Saucedo
6 hours ago
3
Possible duplicate of Filename dot in front
– Stephen Kitt
5 hours ago
Don't worry and don't let people accuse you of doing covert operations on your file system. Everyone can type inls -alF
in a command shell, and all hiding goes away. BTW you might want to usealias l='ls --color=tty -alF'
and with it just type one singlel
to see it all. Tryecho 'set nu' > .vimrc
and voila, you've line numbers in yourvi
orvim
editor. That's all there is to it with "hidden" files.
– Micha
5 hours ago
Hello and welcome to the U&L stack exchange site! Please read over the help center to get more information on how to best post to this site. To get to your question, dotfiles or files starting with a dot character are hidden files. They can used for configuration files for applications you have installed or as profiles for your user settings. What files are you having an issue with? Please edit your post to include more context. Thank you!
– kemotep
6 hours ago
Hello and welcome to the U&L stack exchange site! Please read over the help center to get more information on how to best post to this site. To get to your question, dotfiles or files starting with a dot character are hidden files. They can used for configuration files for applications you have installed or as profiles for your user settings. What files are you having an issue with? Please edit your post to include more context. Thank you!
– kemotep
6 hours ago
I'm not having a problem with mybfilea never looked at my files I'm getting accused of hiding things in files and also that I have hidden apps and I've never downloaded hidden apps
– Regina Saucedo
6 hours ago
I'm not having a problem with mybfilea never looked at my files I'm getting accused of hiding things in files and also that I have hidden apps and I've never downloaded hidden apps
– Regina Saucedo
6 hours ago
3
3
Possible duplicate of Filename dot in front
– Stephen Kitt
5 hours ago
Possible duplicate of Filename dot in front
– Stephen Kitt
5 hours ago
Don't worry and don't let people accuse you of doing covert operations on your file system. Everyone can type in
ls -alF
in a command shell, and all hiding goes away. BTW you might want to use alias l='ls --color=tty -alF'
and with it just type one single l
to see it all. Try echo 'set nu' > .vimrc
and voila, you've line numbers in your vi
or vim
editor. That's all there is to it with "hidden" files.– Micha
5 hours ago
Don't worry and don't let people accuse you of doing covert operations on your file system. Everyone can type in
ls -alF
in a command shell, and all hiding goes away. BTW you might want to use alias l='ls --color=tty -alF'
and with it just type one single l
to see it all. Try echo 'set nu' > .vimrc
and voila, you've line numbers in your vi
or vim
editor. That's all there is to it with "hidden" files.– Micha
5 hours ago
add a comment |
1 Answer
1
active
oldest
votes
This can likely be explained by a google post by Rob Pike about the origin of hidden files.
In the early days of Unix there was no concept of hidden files but the files .
and ..
existed to represent the current directory and parent directory. It became annoying to list these files every time ls
was used so a simple change was made to the ls
program to hide any file beginning with a .
. This change, had the unplanned effect of allowing for "hidden files".
As Rob Pike explains:
As a consequence, more lazy programmers started dropping files into everyone's home directory. I don't have all that much stuff installed on the machine I'm using to type this, but my home directory has about a hundred dot files and I don't even know what most of them are or whether they're still needed. Every file name evaluation that goes through my home directory is slowed down by this accumulated sludge.
So to answer your question those hidden files you didn't create are likely some sort of config files from applications you have installed.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Regina Saucedo is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f506363%2fdot-in-front-of-file%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
This can likely be explained by a google post by Rob Pike about the origin of hidden files.
In the early days of Unix there was no concept of hidden files but the files .
and ..
existed to represent the current directory and parent directory. It became annoying to list these files every time ls
was used so a simple change was made to the ls
program to hide any file beginning with a .
. This change, had the unplanned effect of allowing for "hidden files".
As Rob Pike explains:
As a consequence, more lazy programmers started dropping files into everyone's home directory. I don't have all that much stuff installed on the machine I'm using to type this, but my home directory has about a hundred dot files and I don't even know what most of them are or whether they're still needed. Every file name evaluation that goes through my home directory is slowed down by this accumulated sludge.
So to answer your question those hidden files you didn't create are likely some sort of config files from applications you have installed.
add a comment |
This can likely be explained by a google post by Rob Pike about the origin of hidden files.
In the early days of Unix there was no concept of hidden files but the files .
and ..
existed to represent the current directory and parent directory. It became annoying to list these files every time ls
was used so a simple change was made to the ls
program to hide any file beginning with a .
. This change, had the unplanned effect of allowing for "hidden files".
As Rob Pike explains:
As a consequence, more lazy programmers started dropping files into everyone's home directory. I don't have all that much stuff installed on the machine I'm using to type this, but my home directory has about a hundred dot files and I don't even know what most of them are or whether they're still needed. Every file name evaluation that goes through my home directory is slowed down by this accumulated sludge.
So to answer your question those hidden files you didn't create are likely some sort of config files from applications you have installed.
add a comment |
This can likely be explained by a google post by Rob Pike about the origin of hidden files.
In the early days of Unix there was no concept of hidden files but the files .
and ..
existed to represent the current directory and parent directory. It became annoying to list these files every time ls
was used so a simple change was made to the ls
program to hide any file beginning with a .
. This change, had the unplanned effect of allowing for "hidden files".
As Rob Pike explains:
As a consequence, more lazy programmers started dropping files into everyone's home directory. I don't have all that much stuff installed on the machine I'm using to type this, but my home directory has about a hundred dot files and I don't even know what most of them are or whether they're still needed. Every file name evaluation that goes through my home directory is slowed down by this accumulated sludge.
So to answer your question those hidden files you didn't create are likely some sort of config files from applications you have installed.
This can likely be explained by a google post by Rob Pike about the origin of hidden files.
In the early days of Unix there was no concept of hidden files but the files .
and ..
existed to represent the current directory and parent directory. It became annoying to list these files every time ls
was used so a simple change was made to the ls
program to hide any file beginning with a .
. This change, had the unplanned effect of allowing for "hidden files".
As Rob Pike explains:
As a consequence, more lazy programmers started dropping files into everyone's home directory. I don't have all that much stuff installed on the machine I'm using to type this, but my home directory has about a hundred dot files and I don't even know what most of them are or whether they're still needed. Every file name evaluation that goes through my home directory is slowed down by this accumulated sludge.
So to answer your question those hidden files you didn't create are likely some sort of config files from applications you have installed.
answered 6 hours ago
Jesse_bJesse_b
13.4k23370
13.4k23370
add a comment |
add a comment |
Regina Saucedo is a new contributor. Be nice, and check out our Code of Conduct.
Regina Saucedo is a new contributor. Be nice, and check out our Code of Conduct.
Regina Saucedo is a new contributor. Be nice, and check out our Code of Conduct.
Regina Saucedo is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f506363%2fdot-in-front-of-file%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Hello and welcome to the U&L stack exchange site! Please read over the help center to get more information on how to best post to this site. To get to your question, dotfiles or files starting with a dot character are hidden files. They can used for configuration files for applications you have installed or as profiles for your user settings. What files are you having an issue with? Please edit your post to include more context. Thank you!
– kemotep
6 hours ago
I'm not having a problem with mybfilea never looked at my files I'm getting accused of hiding things in files and also that I have hidden apps and I've never downloaded hidden apps
– Regina Saucedo
6 hours ago
3
Possible duplicate of Filename dot in front
– Stephen Kitt
5 hours ago
Don't worry and don't let people accuse you of doing covert operations on your file system. Everyone can type in
ls -alF
in a command shell, and all hiding goes away. BTW you might want to usealias l='ls --color=tty -alF'
and with it just type one singlel
to see it all. Tryecho 'set nu' > .vimrc
and voila, you've line numbers in yourvi
orvim
editor. That's all there is to it with "hidden" files.– Micha
5 hours ago