Cent OS 6.3 Hidden files in shell
Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
I want to be able to check whether a file is hidden or not in Cent OS 6.3. These are often referred to as (dot) files but I can clearly see Cent OS 6.3 handling these by appending a ~(tilde) to the end
EG:
myfile (not hidden)
myfile~ (hidden)
Now, I can tell that a file is "hidden" if it's a dot file, but what is going on with this tilde (~) terminating character - is this particular to Cent OS 6.3? Is this something I can simply check for in the file name (EG: starting with a dot or ending with a tilde) I would appreciate help on this as, I would assume "hidden" is a file attribute rather than a "naming convention" as I wrong?
linux shell files xattr verification
add a comment |
up vote
0
down vote
favorite
I want to be able to check whether a file is hidden or not in Cent OS 6.3. These are often referred to as (dot) files but I can clearly see Cent OS 6.3 handling these by appending a ~(tilde) to the end
EG:
myfile (not hidden)
myfile~ (hidden)
Now, I can tell that a file is "hidden" if it's a dot file, but what is going on with this tilde (~) terminating character - is this particular to Cent OS 6.3? Is this something I can simply check for in the file name (EG: starting with a dot or ending with a tilde) I would appreciate help on this as, I would assume "hidden" is a file attribute rather than a "naming convention" as I wrong?
linux shell files xattr verification
3
There is no “hidden” file attribute, any hiding is done by the software listing the files. So which program are you using that's hiding files?
– Gilles
Nov 1 '12 at 18:15
Is this for tab completion inside the bash shell? If so, check the value of theFIGNORE
variable usingecho $FIGNORE
.
– Mikel
Nov 1 '12 at 18:33
they are "hidden" in nautilus ("show hidden files")
– user26676
Nov 3 '12 at 12:34
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I want to be able to check whether a file is hidden or not in Cent OS 6.3. These are often referred to as (dot) files but I can clearly see Cent OS 6.3 handling these by appending a ~(tilde) to the end
EG:
myfile (not hidden)
myfile~ (hidden)
Now, I can tell that a file is "hidden" if it's a dot file, but what is going on with this tilde (~) terminating character - is this particular to Cent OS 6.3? Is this something I can simply check for in the file name (EG: starting with a dot or ending with a tilde) I would appreciate help on this as, I would assume "hidden" is a file attribute rather than a "naming convention" as I wrong?
linux shell files xattr verification
I want to be able to check whether a file is hidden or not in Cent OS 6.3. These are often referred to as (dot) files but I can clearly see Cent OS 6.3 handling these by appending a ~(tilde) to the end
EG:
myfile (not hidden)
myfile~ (hidden)
Now, I can tell that a file is "hidden" if it's a dot file, but what is going on with this tilde (~) terminating character - is this particular to Cent OS 6.3? Is this something I can simply check for in the file name (EG: starting with a dot or ending with a tilde) I would appreciate help on this as, I would assume "hidden" is a file attribute rather than a "naming convention" as I wrong?
linux shell files xattr verification
linux shell files xattr verification
edited Nov 17 at 20:37
Rui F Ribeiro
38.2k1475123
38.2k1475123
asked Nov 1 '12 at 18:12
user26676
1015
1015
3
There is no “hidden” file attribute, any hiding is done by the software listing the files. So which program are you using that's hiding files?
– Gilles
Nov 1 '12 at 18:15
Is this for tab completion inside the bash shell? If so, check the value of theFIGNORE
variable usingecho $FIGNORE
.
– Mikel
Nov 1 '12 at 18:33
they are "hidden" in nautilus ("show hidden files")
– user26676
Nov 3 '12 at 12:34
add a comment |
3
There is no “hidden” file attribute, any hiding is done by the software listing the files. So which program are you using that's hiding files?
– Gilles
Nov 1 '12 at 18:15
Is this for tab completion inside the bash shell? If so, check the value of theFIGNORE
variable usingecho $FIGNORE
.
– Mikel
Nov 1 '12 at 18:33
they are "hidden" in nautilus ("show hidden files")
– user26676
Nov 3 '12 at 12:34
3
3
There is no “hidden” file attribute, any hiding is done by the software listing the files. So which program are you using that's hiding files?
– Gilles
Nov 1 '12 at 18:15
There is no “hidden” file attribute, any hiding is done by the software listing the files. So which program are you using that's hiding files?
– Gilles
Nov 1 '12 at 18:15
Is this for tab completion inside the bash shell? If so, check the value of the
FIGNORE
variable using echo $FIGNORE
.– Mikel
Nov 1 '12 at 18:33
Is this for tab completion inside the bash shell? If so, check the value of the
FIGNORE
variable using echo $FIGNORE
.– Mikel
Nov 1 '12 at 18:33
they are "hidden" in nautilus ("show hidden files")
– user26676
Nov 3 '12 at 12:34
they are "hidden" in nautilus ("show hidden files")
– user26676
Nov 3 '12 at 12:34
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
A tilde suffix marks a backup file for a few text editors, such as Emacs ('~') and Vim ('.ext~').
Some programs hide these files, as most people don't care about them.
The only universal convention for a 'hidden' file is a file with a leading '.', due to a feature-like bug which was widely adopted.
thanks for the link - I suspected it was some kind of "retcon" _ I am syncing files and I want to ignore locked files, hidden files etc so thanks for the info
– user26676
Nov 3 '12 at 12:33
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
A tilde suffix marks a backup file for a few text editors, such as Emacs ('~') and Vim ('.ext~').
Some programs hide these files, as most people don't care about them.
The only universal convention for a 'hidden' file is a file with a leading '.', due to a feature-like bug which was widely adopted.
thanks for the link - I suspected it was some kind of "retcon" _ I am syncing files and I want to ignore locked files, hidden files etc so thanks for the info
– user26676
Nov 3 '12 at 12:33
add a comment |
up vote
2
down vote
accepted
A tilde suffix marks a backup file for a few text editors, such as Emacs ('~') and Vim ('.ext~').
Some programs hide these files, as most people don't care about them.
The only universal convention for a 'hidden' file is a file with a leading '.', due to a feature-like bug which was widely adopted.
thanks for the link - I suspected it was some kind of "retcon" _ I am syncing files and I want to ignore locked files, hidden files etc so thanks for the info
– user26676
Nov 3 '12 at 12:33
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
A tilde suffix marks a backup file for a few text editors, such as Emacs ('~') and Vim ('.ext~').
Some programs hide these files, as most people don't care about them.
The only universal convention for a 'hidden' file is a file with a leading '.', due to a feature-like bug which was widely adopted.
A tilde suffix marks a backup file for a few text editors, such as Emacs ('~') and Vim ('.ext~').
Some programs hide these files, as most people don't care about them.
The only universal convention for a 'hidden' file is a file with a leading '.', due to a feature-like bug which was widely adopted.
answered Nov 1 '12 at 18:36
anonfunc
22112
22112
thanks for the link - I suspected it was some kind of "retcon" _ I am syncing files and I want to ignore locked files, hidden files etc so thanks for the info
– user26676
Nov 3 '12 at 12:33
add a comment |
thanks for the link - I suspected it was some kind of "retcon" _ I am syncing files and I want to ignore locked files, hidden files etc so thanks for the info
– user26676
Nov 3 '12 at 12:33
thanks for the link - I suspected it was some kind of "retcon" _ I am syncing files and I want to ignore locked files, hidden files etc so thanks for the info
– user26676
Nov 3 '12 at 12:33
thanks for the link - I suspected it was some kind of "retcon" _ I am syncing files and I want to ignore locked files, hidden files etc so thanks for the info
– user26676
Nov 3 '12 at 12:33
add a comment |
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%2f53565%2fcent-os-6-3-hidden-files-in-shell%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
3
There is no “hidden” file attribute, any hiding is done by the software listing the files. So which program are you using that's hiding files?
– Gilles
Nov 1 '12 at 18:15
Is this for tab completion inside the bash shell? If so, check the value of the
FIGNORE
variable usingecho $FIGNORE
.– Mikel
Nov 1 '12 at 18:33
they are "hidden" in nautilus ("show hidden files")
– user26676
Nov 3 '12 at 12:34