find: list date and size without using -printfHow do I get current datetime on the Windows command line, in a suitable format for using in a filename?Use grep --exclude/--include syntax to not grep through certain filesUsing ls to list directories and their total sizesHow to exclude a directory in find . commandGiven two directory trees, how can I find out which files differ?How to recursively find and list the latest modified files in a directory with subdirectories and times?How can I recursively find all files in current and subfolders based on wildcard matching?How do I find all files containing specific text on Linux?How to get the current date and time in the terminal and set a custom command in terminal for it?How to display modified date time with 'find' command?
What should you do when eye contact makes your subordinate uncomfortable?
Can I still be respawned if I die by falling off the map?
What are the advantages of simplicial model categories over non-simplicial ones?
Why did the EU agree to delay the Brexit deadline?
Plot of a tornado-shaped surface
Why is this estimator biased?
Why should universal income be universal?
Picking the different solutions to the time independent Schrodinger eqaution
How can "mimic phobia" be cured or prevented?
Can disgust be a key component of horror?
Strong empirical falsification of quantum mechanics based on vacuum energy density
Can a Canadian Travel to the USA twice, less than 180 days each time?
Did arcade monitors have same pixel aspect ratio as TV sets?
Hero deduces identity of a killer
Non-trope happy ending?
Can a College of Swords bard use a Blade Flourish option on an opportunity attack provoked by their own Dissonant Whispers spell?
Is there a way to get `mathscr' with lower case letters in pdfLaTeX?
Using substitution ciphers to generate new alphabets in a novel
How should I respond when I lied about my education and the company finds out through background check?
I'm the sea and the sun
Mimic lecturing on blackboard, facing audience
PTIJ: Haman's bad computer
Quoting Keynes in a lecture
Does an advisor owe his/her student anything? Will an advisor keep a PhD student only out of pity?
find: list date and size without using -printf
How do I get current datetime on the Windows command line, in a suitable format for using in a filename?Use grep --exclude/--include syntax to not grep through certain filesUsing ls to list directories and their total sizesHow to exclude a directory in find . commandGiven two directory trees, how can I find out which files differ?How to recursively find and list the latest modified files in a directory with subdirectories and times?How can I recursively find all files in current and subfolders based on wildcard matching?How do I find all files containing specific text on Linux?How to get the current date and time in the terminal and set a custom command in terminal for it?How to display modified date time with 'find' command?
Is there a way to do the following without using the -printf option, which I don't have?
find . -printf "%p (%s, %Tb %Td %TY %TH:%TM)n"
Basically I want the size and date/time to be listed alongside the names.
A sample output of the following structure:
.
|-one
|-two
| |-two_2
| |-two_1
|-test_file
would be:
. (4096, Mar 06 2019 16:38)
./one (4096, Mar 06 2019 16:37)
./two (4096, Mar 06 2019 16:38)
./two/two_2 (4096, Mar 06 2019 16:38)
./two/two_1 (4096, Mar 06 2019 16:38)
./test_file (0, Mar 06 2019 16:38)
linux command-line grep find
add a comment |
Is there a way to do the following without using the -printf option, which I don't have?
find . -printf "%p (%s, %Tb %Td %TY %TH:%TM)n"
Basically I want the size and date/time to be listed alongside the names.
A sample output of the following structure:
.
|-one
|-two
| |-two_2
| |-two_1
|-test_file
would be:
. (4096, Mar 06 2019 16:38)
./one (4096, Mar 06 2019 16:37)
./two (4096, Mar 06 2019 16:38)
./two/two_2 (4096, Mar 06 2019 16:38)
./two/two_1 (4096, Mar 06 2019 16:38)
./test_file (0, Mar 06 2019 16:38)
linux command-line grep find
add a comment |
Is there a way to do the following without using the -printf option, which I don't have?
find . -printf "%p (%s, %Tb %Td %TY %TH:%TM)n"
Basically I want the size and date/time to be listed alongside the names.
A sample output of the following structure:
.
|-one
|-two
| |-two_2
| |-two_1
|-test_file
would be:
. (4096, Mar 06 2019 16:38)
./one (4096, Mar 06 2019 16:37)
./two (4096, Mar 06 2019 16:38)
./two/two_2 (4096, Mar 06 2019 16:38)
./two/two_1 (4096, Mar 06 2019 16:38)
./test_file (0, Mar 06 2019 16:38)
linux command-line grep find
Is there a way to do the following without using the -printf option, which I don't have?
find . -printf "%p (%s, %Tb %Td %TY %TH:%TM)n"
Basically I want the size and date/time to be listed alongside the names.
A sample output of the following structure:
.
|-one
|-two
| |-two_2
| |-two_1
|-test_file
would be:
. (4096, Mar 06 2019 16:38)
./one (4096, Mar 06 2019 16:37)
./two (4096, Mar 06 2019 16:38)
./two/two_2 (4096, Mar 06 2019 16:38)
./two/two_1 (4096, Mar 06 2019 16:38)
./test_file (0, Mar 06 2019 16:38)
linux command-line grep find
linux command-line grep find
asked Mar 8 at 2:15
JobsJobs
1,75721235
1,75721235
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I've figured it out.
-exec stat
could be used instead to get size and date info.
find . -type f -exec stat -c '%n (%z , %A , %s)' + | sed -
e s'/.000000000//'g
This is useful when the -printf option is not available.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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%2fstackoverflow.com%2fquestions%2f55055780%2ffind-list-date-and-size-without-using-printf%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
I've figured it out.
-exec stat
could be used instead to get size and date info.
find . -type f -exec stat -c '%n (%z , %A , %s)' + | sed -
e s'/.000000000//'g
This is useful when the -printf option is not available.
add a comment |
I've figured it out.
-exec stat
could be used instead to get size and date info.
find . -type f -exec stat -c '%n (%z , %A , %s)' + | sed -
e s'/.000000000//'g
This is useful when the -printf option is not available.
add a comment |
I've figured it out.
-exec stat
could be used instead to get size and date info.
find . -type f -exec stat -c '%n (%z , %A , %s)' + | sed -
e s'/.000000000//'g
This is useful when the -printf option is not available.
I've figured it out.
-exec stat
could be used instead to get size and date info.
find . -type f -exec stat -c '%n (%z , %A , %s)' + | sed -
e s'/.000000000//'g
This is useful when the -printf option is not available.
answered Mar 9 at 21:13
JobsJobs
1,75721235
1,75721235
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- 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%2fstackoverflow.com%2fquestions%2f55055780%2ffind-list-date-and-size-without-using-printf%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