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?













0















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)









share|improve this question


























    0















    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)









    share|improve this question
























      0












      0








      0








      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)









      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 8 at 2:15









      JobsJobs

      1,75721235




      1,75721235






















          1 Answer
          1






          active

          oldest

          votes


















          0














          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.






          share|improve this answer






















            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
            );



            );













            draft saved

            draft discarded


















            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









            0














            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.






            share|improve this answer



























              0














              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.






              share|improve this answer

























                0












                0








                0







                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.






                share|improve this answer













                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.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 9 at 21:13









                JobsJobs

                1,75721235




                1,75721235





























                    draft saved

                    draft discarded
















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

                    Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

                    2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived