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?

Was any UN Security Council vote triple-vetoed?

"You are your self first supporter", a more proper way to say it

Can an x86 CPU running in real mode be considered to be basically an 8086 CPU?

How is the claim "I am in New York only if I am in America" the same as "If I am in New York, then I am in America?

Can you really stack all of this on an Opportunity Attack?

LWC SFDX source push error TypeError: LWC1009: decl.moveTo is not a function

Is it tax fraud for an individual to declare non-taxable revenue as taxable income? (US tax laws)

How is it possible to have an ability score that is less than 3?

Why can't we play rap on piano?

Why doesn't Newton's third law mean a person bounces back to where they started when they hit the ground?

Maximum likelihood parameters deviate from posterior distributions

Today is the Center

What does "Puller Prush Person" mean?

Does detail obscure or enhance action?

tikz convert color string to hex value

Does an object always see its latest internal state irrespective of thread?

How to format long polynomial?

Watching something be written to a file live with tail

Find the result of this dual key cipher

Convert two switches to a dual stack, and add outlet - possible here?

How can I prevent hyper evolved versions of regular creatures from wiping out their cousins?

What's that red-plus icon near a text?

If human space travel is limited by the G force vulnerability, is there a way to counter G forces?

When a company launches a new product do they "come out" with a new product or do they "come up" with a new product?



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?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








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,77221335




      1,77221335






















          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,77221335




                1,77221335





























                    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

                    1928 у кіно

                    Захаров Федір Захарович

                    Ель Греко