Determine if ls output is file or directory
w/o colors " ls " command
1 2 3
unknown which is a folder which is a file.
can "ls" or some other command clarify which is file which is folder
perhaps by including ' / ' infront if : a folder ?
for example:
/1 2 /3
ls
add a comment |
w/o colors " ls " command
1 2 3
unknown which is a folder which is a file.
can "ls" or some other command clarify which is file which is folder
perhaps by including ' / ' infront if : a folder ?
for example:
/1 2 /3
ls
Hey that guy that deleted his answer.. that was amazing help. I found out about the comma.
– VIE
Mar 3 '17 at 18:23
add a comment |
w/o colors " ls " command
1 2 3
unknown which is a folder which is a file.
can "ls" or some other command clarify which is file which is folder
perhaps by including ' / ' infront if : a folder ?
for example:
/1 2 /3
ls
w/o colors " ls " command
1 2 3
unknown which is a folder which is a file.
can "ls" or some other command clarify which is file which is folder
perhaps by including ' / ' infront if : a folder ?
for example:
/1 2 /3
ls
ls
edited Dec 19 '18 at 16:13
jww
1,58232163
1,58232163
asked Mar 3 '17 at 18:09
VIE
503
503
Hey that guy that deleted his answer.. that was amazing help. I found out about the comma.
– VIE
Mar 3 '17 at 18:23
add a comment |
Hey that guy that deleted his answer.. that was amazing help. I found out about the comma.
– VIE
Mar 3 '17 at 18:23
Hey that guy that deleted his answer.. that was amazing help. I found out about the comma.
– VIE
Mar 3 '17 at 18:23
Hey that guy that deleted his answer.. that was amazing help. I found out about the comma.
– VIE
Mar 3 '17 at 18:23
add a comment |
3 Answers
3
active
oldest
votes
On Linux,
ls -p
adds the trailing slash on dirs
add a comment |
-F, --classify
append indicator (one of */=>@|) to entries
Example output, where 1
and 2
are directories, and 3
, 4
are files:
$ ls -F
1/ 2/ 3 4
add a comment |
Another method: ls -l displays the files and folders with permission bits. If the line starts with a -, it's a file, if it's a directory, it starts with a d.
ls -l
-rw-r--r-- 1 user group 7727 Feb 27 16:07 README.md
drwxr-xr-x 6 user greup 204 Mar 3 09:20 my_directory
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
});
}
});
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%2f348962%2fdetermine-if-ls-output-is-file-or-directory%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
On Linux,
ls -p
adds the trailing slash on dirs
add a comment |
On Linux,
ls -p
adds the trailing slash on dirs
add a comment |
On Linux,
ls -p
adds the trailing slash on dirs
On Linux,
ls -p
adds the trailing slash on dirs
edited Mar 3 '17 at 23:18
Gilles
528k12810581583
528k12810581583
answered Mar 3 '17 at 18:13
amisax
1,453314
1,453314
add a comment |
add a comment |
-F, --classify
append indicator (one of */=>@|) to entries
Example output, where 1
and 2
are directories, and 3
, 4
are files:
$ ls -F
1/ 2/ 3 4
add a comment |
-F, --classify
append indicator (one of */=>@|) to entries
Example output, where 1
and 2
are directories, and 3
, 4
are files:
$ ls -F
1/ 2/ 3 4
add a comment |
-F, --classify
append indicator (one of */=>@|) to entries
Example output, where 1
and 2
are directories, and 3
, 4
are files:
$ ls -F
1/ 2/ 3 4
-F, --classify
append indicator (one of */=>@|) to entries
Example output, where 1
and 2
are directories, and 3
, 4
are files:
$ ls -F
1/ 2/ 3 4
edited Mar 3 '17 at 23:19
Gilles
528k12810581583
528k12810581583
answered Mar 3 '17 at 18:15
dhag
11.2k33045
11.2k33045
add a comment |
add a comment |
Another method: ls -l displays the files and folders with permission bits. If the line starts with a -, it's a file, if it's a directory, it starts with a d.
ls -l
-rw-r--r-- 1 user group 7727 Feb 27 16:07 README.md
drwxr-xr-x 6 user greup 204 Mar 3 09:20 my_directory
add a comment |
Another method: ls -l displays the files and folders with permission bits. If the line starts with a -, it's a file, if it's a directory, it starts with a d.
ls -l
-rw-r--r-- 1 user group 7727 Feb 27 16:07 README.md
drwxr-xr-x 6 user greup 204 Mar 3 09:20 my_directory
add a comment |
Another method: ls -l displays the files and folders with permission bits. If the line starts with a -, it's a file, if it's a directory, it starts with a d.
ls -l
-rw-r--r-- 1 user group 7727 Feb 27 16:07 README.md
drwxr-xr-x 6 user greup 204 Mar 3 09:20 my_directory
Another method: ls -l displays the files and folders with permission bits. If the line starts with a -, it's a file, if it's a directory, it starts with a d.
ls -l
-rw-r--r-- 1 user group 7727 Feb 27 16:07 README.md
drwxr-xr-x 6 user greup 204 Mar 3 09:20 my_directory
answered Mar 3 '17 at 18:33
Carolyn Van Spyk
861
861
add a comment |
add a comment |
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f348962%2fdetermine-if-ls-output-is-file-or-directory%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
Hey that guy that deleted his answer.. that was amazing help. I found out about the comma.
– VIE
Mar 3 '17 at 18:23