output of watch several commands not clear












0















I am restoring a database backup on my server and i need to watch output of df -h and restore utility db2pd -utilities. I tried this:
watch -n 2 "db2pd -utilities && df -h

output(summarized):



    Every 2.0s: db2pd -utilities && df -h    

Database Member 0 -- Active -- Up 0 days 23:11:19

Utilities:
Address ID Type State Invoker Priority

0x000000E0 1 RESTORE 0 0 0


Progress:
Address ID PhaseNum CompletedWork
0x00003088 1 1 1073745920 bytes
Filesystem Size Used Avail Use% Mounted on
/dev/sda3 39G 824M 36G 3% /
tmpfs 253G 16K 253G 1% /dev/shm
/dev/sda2 194M 36M 149M 20% /boot
/dev/sda1 200M 264K 200M 1% /boot/efi
/dev/sda4 20G 215M 19G 2% /home
/dev/sda5 20G 1.4G 17G 8% /opt
/dev/sda9 166G 6.6G 151G 5% /tempWork
/dev/sda7 9.7G 152M 9.0G 2% /tmp
/dev/sda6 20G 227M 19G 2% /var


actually the outputs are more and long I had to remove some parts and they combine together and become hard to read. what should i use to make space between them?










share|improve this question





























    0















    I am restoring a database backup on my server and i need to watch output of df -h and restore utility db2pd -utilities. I tried this:
    watch -n 2 "db2pd -utilities && df -h

    output(summarized):



        Every 2.0s: db2pd -utilities && df -h    

    Database Member 0 -- Active -- Up 0 days 23:11:19

    Utilities:
    Address ID Type State Invoker Priority

    0x000000E0 1 RESTORE 0 0 0


    Progress:
    Address ID PhaseNum CompletedWork
    0x00003088 1 1 1073745920 bytes
    Filesystem Size Used Avail Use% Mounted on
    /dev/sda3 39G 824M 36G 3% /
    tmpfs 253G 16K 253G 1% /dev/shm
    /dev/sda2 194M 36M 149M 20% /boot
    /dev/sda1 200M 264K 200M 1% /boot/efi
    /dev/sda4 20G 215M 19G 2% /home
    /dev/sda5 20G 1.4G 17G 8% /opt
    /dev/sda9 166G 6.6G 151G 5% /tempWork
    /dev/sda7 9.7G 152M 9.0G 2% /tmp
    /dev/sda6 20G 227M 19G 2% /var


    actually the outputs are more and long I had to remove some parts and they combine together and become hard to read. what should i use to make space between them?










    share|improve this question



























      0












      0








      0








      I am restoring a database backup on my server and i need to watch output of df -h and restore utility db2pd -utilities. I tried this:
      watch -n 2 "db2pd -utilities && df -h

      output(summarized):



          Every 2.0s: db2pd -utilities && df -h    

      Database Member 0 -- Active -- Up 0 days 23:11:19

      Utilities:
      Address ID Type State Invoker Priority

      0x000000E0 1 RESTORE 0 0 0


      Progress:
      Address ID PhaseNum CompletedWork
      0x00003088 1 1 1073745920 bytes
      Filesystem Size Used Avail Use% Mounted on
      /dev/sda3 39G 824M 36G 3% /
      tmpfs 253G 16K 253G 1% /dev/shm
      /dev/sda2 194M 36M 149M 20% /boot
      /dev/sda1 200M 264K 200M 1% /boot/efi
      /dev/sda4 20G 215M 19G 2% /home
      /dev/sda5 20G 1.4G 17G 8% /opt
      /dev/sda9 166G 6.6G 151G 5% /tempWork
      /dev/sda7 9.7G 152M 9.0G 2% /tmp
      /dev/sda6 20G 227M 19G 2% /var


      actually the outputs are more and long I had to remove some parts and they combine together and become hard to read. what should i use to make space between them?










      share|improve this question
















      I am restoring a database backup on my server and i need to watch output of df -h and restore utility db2pd -utilities. I tried this:
      watch -n 2 "db2pd -utilities && df -h

      output(summarized):



          Every 2.0s: db2pd -utilities && df -h    

      Database Member 0 -- Active -- Up 0 days 23:11:19

      Utilities:
      Address ID Type State Invoker Priority

      0x000000E0 1 RESTORE 0 0 0


      Progress:
      Address ID PhaseNum CompletedWork
      0x00003088 1 1 1073745920 bytes
      Filesystem Size Used Avail Use% Mounted on
      /dev/sda3 39G 824M 36G 3% /
      tmpfs 253G 16K 253G 1% /dev/shm
      /dev/sda2 194M 36M 149M 20% /boot
      /dev/sda1 200M 264K 200M 1% /boot/efi
      /dev/sda4 20G 215M 19G 2% /home
      /dev/sda5 20G 1.4G 17G 8% /opt
      /dev/sda9 166G 6.6G 151G 5% /tempWork
      /dev/sda7 9.7G 152M 9.0G 2% /tmp
      /dev/sda6 20G 227M 19G 2% /var


      actually the outputs are more and long I had to remove some parts and they combine together and become hard to read. what should i use to make space between them?







      whitespace watch






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 3 at 7:27







      BlackCrystal

















      asked Mar 3 at 6:26









      BlackCrystalBlackCrystal

      336114




      336114






















          1 Answer
          1






          active

          oldest

          votes


















          2














          All that's necessary is to add a printf statement between the original commands:
          watch -n 2 "db2pd -utilities && printf 'nnn' && df -h" You can use grep -v to hide any extraneous data from the individual utilities.






          share|improve this answer























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


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f504052%2foutput-of-watch-several-commands-not-clear%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









            2














            All that's necessary is to add a printf statement between the original commands:
            watch -n 2 "db2pd -utilities && printf 'nnn' && df -h" You can use grep -v to hide any extraneous data from the individual utilities.






            share|improve this answer




























              2














              All that's necessary is to add a printf statement between the original commands:
              watch -n 2 "db2pd -utilities && printf 'nnn' && df -h" You can use grep -v to hide any extraneous data from the individual utilities.






              share|improve this answer


























                2












                2








                2







                All that's necessary is to add a printf statement between the original commands:
                watch -n 2 "db2pd -utilities && printf 'nnn' && df -h" You can use grep -v to hide any extraneous data from the individual utilities.






                share|improve this answer













                All that's necessary is to add a printf statement between the original commands:
                watch -n 2 "db2pd -utilities && printf 'nnn' && df -h" You can use grep -v to hide any extraneous data from the individual utilities.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 3 at 11:43









                james james

                362




                362






























                    draft saved

                    draft discarded




















































                    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.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f504052%2foutput-of-watch-several-commands-not-clear%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

                    How to reconfigure Docker Trusted Registry 2.x.x to use CEPH FS mount instead of NFS and other traditional...

                    is 'sed' thread safe

                    How to make a Squid Proxy server?