Adding logfile command puts script on the loop?Check if a directory exists in a shell scriptGet the source directory of a Bash script from within the script itselfCalling an external command in PythonHow do I prompt for Yes/No/Cancel input in a Linux shell script?How to check if a program exists from a Bash script?Looping through the content of a file in BashHow to exclude a directory in find . commandHow do I set a variable to the output of a command in Bash?Check existence of input argument in a Bash shell scriptLoop through an array of strings in Bash?

How to install Rasbian Stretch on Raspberry Pi 4?

How does doing something together work?

Why are two-stroke engines nearly unheard of in aviation?

Degenerate Gaussian Integral

What is the word for a person who destroys monuments?

How would you translate Evangelii Nuntiandi?

Writing a system of Linear Equations

Is it better to use mosfet with gate driver IC or mosfet with lower VGs on

Very lazy puppy

How many people need to succeed in a group check with three people?

Delete empty subfolders, keep parent folder

Is there a tool to measure the "maturity" of a code in Git?

Should I inform my future product owner that there are big chances that a team member will leave the company soon?

Exam design: give maximum score per question or not?

Persuading players to be less attached to a pre-session 0 character concept

Why does an orbit become hyperbolic when total orbital energy is positive?

Did Sauron ever betray Morgoth?

How to make classical firearms effective on space habitats despite the coriolis effect?

Beauville-Laszlo for schemes

Are there any “Third Order” acronyms used in space exploration?

Answer not a fool, or answer a fool?

Does Forgotten Realms setting count as “High magic”?

Can a business put whatever they want into a contract?

Electrosynthetic Autotrophs



Adding logfile command puts script on the loop?


Check if a directory exists in a shell scriptGet the source directory of a Bash script from within the script itselfCalling an external command in PythonHow do I prompt for Yes/No/Cancel input in a Linux shell script?How to check if a program exists from a Bash script?Looping through the content of a file in BashHow to exclude a directory in find . commandHow do I set a variable to the output of a command in Bash?Check existence of input argument in a Bash shell scriptLoop through an array of strings in Bash?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















I'm trying to create logfile for output/terminal files of a script.
Why is script going for the loop?



Script is used for remotely changing passwords over ssh using imported .txt file with list of addresses. Script is working fine until I add line for logging at the end after DONE:



#!/bin/bash

echo "Enter the username for which you want to change the password"

read USER

sleep 2

echo "Enter the password that you would like to set for $USER"

read PASSWORD

sleep 2

echo "Enter the file name that contains a list of servers. Ex: ip.txt"

read FILE

sleep 2

for HOST in $(cat $FILE)

do

ssh root@$HOST "echo $'$PASSWORDn$PASSWORD' | passwd $USER"

done


I tried adding following log creating commands:



/root/passwordchange.sh | tee -a /root/output.log

logsave -a /root/output.log /root/passwordchange.sh

/root/passwordchange.sh >> /root/output.log


Adding logging line is creating loop for entire program instead of closing it.
I need to sigkill script to end the process.



Output file is created just as normal with all the information provided.



It is my first question here on stack, thank you from advance for all answers










share|improve this question






























    1















    I'm trying to create logfile for output/terminal files of a script.
    Why is script going for the loop?



    Script is used for remotely changing passwords over ssh using imported .txt file with list of addresses. Script is working fine until I add line for logging at the end after DONE:



    #!/bin/bash

    echo "Enter the username for which you want to change the password"

    read USER

    sleep 2

    echo "Enter the password that you would like to set for $USER"

    read PASSWORD

    sleep 2

    echo "Enter the file name that contains a list of servers. Ex: ip.txt"

    read FILE

    sleep 2

    for HOST in $(cat $FILE)

    do

    ssh root@$HOST "echo $'$PASSWORDn$PASSWORD' | passwd $USER"

    done


    I tried adding following log creating commands:



    /root/passwordchange.sh | tee -a /root/output.log

    logsave -a /root/output.log /root/passwordchange.sh

    /root/passwordchange.sh >> /root/output.log


    Adding logging line is creating loop for entire program instead of closing it.
    I need to sigkill script to end the process.



    Output file is created just as normal with all the information provided.



    It is my first question here on stack, thank you from advance for all answers










    share|improve this question


























      1












      1








      1








      I'm trying to create logfile for output/terminal files of a script.
      Why is script going for the loop?



      Script is used for remotely changing passwords over ssh using imported .txt file with list of addresses. Script is working fine until I add line for logging at the end after DONE:



      #!/bin/bash

      echo "Enter the username for which you want to change the password"

      read USER

      sleep 2

      echo "Enter the password that you would like to set for $USER"

      read PASSWORD

      sleep 2

      echo "Enter the file name that contains a list of servers. Ex: ip.txt"

      read FILE

      sleep 2

      for HOST in $(cat $FILE)

      do

      ssh root@$HOST "echo $'$PASSWORDn$PASSWORD' | passwd $USER"

      done


      I tried adding following log creating commands:



      /root/passwordchange.sh | tee -a /root/output.log

      logsave -a /root/output.log /root/passwordchange.sh

      /root/passwordchange.sh >> /root/output.log


      Adding logging line is creating loop for entire program instead of closing it.
      I need to sigkill script to end the process.



      Output file is created just as normal with all the information provided.



      It is my first question here on stack, thank you from advance for all answers










      share|improve this question














      I'm trying to create logfile for output/terminal files of a script.
      Why is script going for the loop?



      Script is used for remotely changing passwords over ssh using imported .txt file with list of addresses. Script is working fine until I add line for logging at the end after DONE:



      #!/bin/bash

      echo "Enter the username for which you want to change the password"

      read USER

      sleep 2

      echo "Enter the password that you would like to set for $USER"

      read PASSWORD

      sleep 2

      echo "Enter the file name that contains a list of servers. Ex: ip.txt"

      read FILE

      sleep 2

      for HOST in $(cat $FILE)

      do

      ssh root@$HOST "echo $'$PASSWORDn$PASSWORD' | passwd $USER"

      done


      I tried adding following log creating commands:



      /root/passwordchange.sh | tee -a /root/output.log

      logsave -a /root/output.log /root/passwordchange.sh

      /root/passwordchange.sh >> /root/output.log


      Adding logging line is creating loop for entire program instead of closing it.
      I need to sigkill script to end the process.



      Output file is created just as normal with all the information provided.



      It is my first question here on stack, thank you from advance for all answers







      linux bash shell centos






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 28 at 12:49









      zemolzemol

      62 bronze badges




      62 bronze badges

























          0






          active

          oldest

          votes










          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/4.0/"u003ecc by-sa 4.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%2f55398096%2fadding-logfile-command-puts-script-on-the-loop%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes




          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.




















          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%2f55398096%2fadding-logfile-command-puts-script-on-the-loop%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

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

          은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현