How can I track script which gives me “command not found” right after the login?2019 Community Moderator ElectionIs it possible to find out which files are setting/adding to environment variables, and their order of precedence?login prompt not displayed after bootHow do I track down the source of a ssh login message?how to correctly delay the execution of a startup script based on a tested condition?How can I start a wine application at startup without login?Can call login command from terminalGRUB2 not detecting Windows; rootnoverify: command not foundRunning a program (command) on terminal after login screen in Ubuntu 14.04~/.bashrc script not run correctly on ssh login, does work correctly with source ~/.bashrcHow to make a simple script run at login everytimeHow to run a “Keep NumLock always on” command in Linux Mint 19 Cinnamon on each reboot / re-login?

Are there verbs that are neither telic, or atelic?

Identifying the interval from A♭ to D♯

Have researchers managed to "reverse time"? If so, what does that mean for physics?

How to write cleanly even if my character uses expletive language?

Why do Australian milk farmers need to protest supermarkets' milk price?

Do I need to be arrogant to get ahead?

Are ETF trackers fundamentally better than individual stocks?

Why doesn't using two cd commands in bash script execute the second command?

Interplanetary conflict, some disease destroys the ability to understand or appreciate music

My Graph Theory Students

Are all passive ability checks floors for active ability checks?

What exactly is this small puffer fish doing and how did it manage to accomplish such a feat?

What approach do we need to follow for projects without a test environment?

Can a druid choose the size of its wild shape beast?

Life insurance that covers only simultaneous/dual deaths

Define, (actually define) the "stability" and "energy" of a compound

How to deal with taxi scam when on vacation?

Gravity magic - How does it work?

Why Choose Less Effective Armour Types?

Is a party consisting of only a bard, a cleric, and a warlock functional long-term?

How do I hide Chekhov's Gun?

Co-worker team leader wants to inject his friend's awful software into our development. What should I say to our common boss?

Existence of subset with given Hausdorff dimension

compactness of a set where am I going wrong



How can I track script which gives me “command not found” right after the login?



2019 Community Moderator ElectionIs it possible to find out which files are setting/adding to environment variables, and their order of precedence?login prompt not displayed after bootHow do I track down the source of a ssh login message?how to correctly delay the execution of a startup script based on a tested condition?How can I start a wine application at startup without login?Can call login command from terminalGRUB2 not detecting Windows; rootnoverify: command not foundRunning a program (command) on terminal after login screen in Ubuntu 14.04~/.bashrc script not run correctly on ssh login, does work correctly with source ~/.bashrcHow to make a simple script run at login everytimeHow to run a “Keep NumLock always on” command in Linux Mint 19 Cinnamon on each reboot / re-login?










5















When I login, I have these messages:



-bash: $'r' : command not found
-bash: $'r' : command not found
-bash: $'r' : command not found


It is quite clear that it is caused by Windows-style line endings in some startup script(s), so my question is:
Can I track script that causes that and how?










share|improve this question









New contributor




Denis Sablukov is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.















  • 1





    Try looking at the .bashrc,.bash_profile and profile files in your home directory as well as /etc/profile

    – Raman Sailopal
    14 hours ago















5















When I login, I have these messages:



-bash: $'r' : command not found
-bash: $'r' : command not found
-bash: $'r' : command not found


It is quite clear that it is caused by Windows-style line endings in some startup script(s), so my question is:
Can I track script that causes that and how?










share|improve this question









New contributor




Denis Sablukov is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.















  • 1





    Try looking at the .bashrc,.bash_profile and profile files in your home directory as well as /etc/profile

    – Raman Sailopal
    14 hours ago













5












5








5


1






When I login, I have these messages:



-bash: $'r' : command not found
-bash: $'r' : command not found
-bash: $'r' : command not found


It is quite clear that it is caused by Windows-style line endings in some startup script(s), so my question is:
Can I track script that causes that and how?










share|improve this question









New contributor




Denis Sablukov is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












When I login, I have these messages:



-bash: $'r' : command not found
-bash: $'r' : command not found
-bash: $'r' : command not found


It is quite clear that it is caused by Windows-style line endings in some startup script(s), so my question is:
Can I track script that causes that and how?







centos login startup troubleshooting






share|improve this question









New contributor




Denis Sablukov is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




Denis Sablukov is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited 9 hours ago









cat

1,72321336




1,72321336






New contributor




Denis Sablukov is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 14 hours ago









Denis SablukovDenis Sablukov

1285




1285




New contributor




Denis Sablukov is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Denis Sablukov is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Denis Sablukov is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.







  • 1





    Try looking at the .bashrc,.bash_profile and profile files in your home directory as well as /etc/profile

    – Raman Sailopal
    14 hours ago












  • 1





    Try looking at the .bashrc,.bash_profile and profile files in your home directory as well as /etc/profile

    – Raman Sailopal
    14 hours ago







1




1





Try looking at the .bashrc,.bash_profile and profile files in your home directory as well as /etc/profile

– Raman Sailopal
14 hours ago





Try looking at the .bashrc,.bash_profile and profile files in your home directory as well as /etc/profile

– Raman Sailopal
14 hours ago










4 Answers
4






active

oldest

votes


















12














Bash reads a number of different files on startup, even depending on how it's started (see the manual for the description). Then there's stuff like /etc/profile.d/ that aren't directly read by the shell, but can be referenced from the other startup files in many distributions.



You'll have to go through all of those but luckily, you can just grep for the carriage return. Try e.g. something like:



grep $'r' ~/.bashrc ~/.profile ~/.bash_login ~/.bash_profile /etc/bash.bashrc /etc/profile /etc/profile.d/*


See also Is it possible to find out which files are setting/adding to environment variables, and their order of precedence? for a similar issue.






share|improve this answer


















  • 6





    One more place to look for : ~/.bash_aliases

    – Weijun Zhou
    9 hours ago


















3














Another method is to take all of those startup scripts mentioned, and echo a string identifying each one at the start of each one.



$ head .bashrc
echo "Running bashrc"


Then, on login, you will see something like this:



running bashrc
running bash_aliases
-bash: $'r' : command not found
-bash: $'r' : command not found
-bash: $'r' : command not found
running something_else


At that point you can conclude that, (in the example above) .bash_aliases contains the offending line endings.



Once you have identified the file, but the problem lines don't jump out at you, you can use the same method to track down the line. Echo a message halfway through the file, then 3/4ths or 1/4s through, depending on the output. That way you can track down the line, depending on whether it echoes before or after your echo.






share|improve this answer























  • Yeah, this method is good if one can quickly automize it, otherwise it is almost the same as look through all these files.

    – Denis Sablukov
    6 hours ago











  • Note that you might want to also say 'done running <file>' at the end of each one. In this case it doesn't really matter unless only some of the lines have CR line endings, but if you're looking for another error it could be in your .bashrc after you source .bash_aliases.

    – Ben Millwood
    2 hours ago


















1














file(1) can be helpful here as well.



$file *

signin: Python script, ASCII text
signup: Python script, ASCII text, with CRLF line terminators
site_off.htm: XML 1.0 document, ASCII text
sitemaps: directory


I can see that signup needs to have those pesky Windows CRLF line-endings removed.



For a recursive directly like /home/username you could probably combine with find and xargs (and maybe a grep, too):



$ find . | xargs file | grep CR

./foo_data/V: ASCII text, with CR, LF line terminators
./foo_data/Y: ASCII text, with CR, LF line terminators





share|improve this answer






























    0














    I take the hard part of this question to be not "hwo can I find carriage returns in a file?" but "how can I find out which files my bashrc uses?"



    For the second question, you can try something like this:



    bash -x .bashrc


    This will show you everything your bashrc does, including all the files it refers to. It's noisy, but should help you track down which files are being used.



    Except in fact, my (and many other) .bashrc files exit early if not run interactively, so you have to trick it into passing that check:



    bash -ix .bashrc


    Here the -i forces interactive mode.



    To grep out just the cases where you source a file, something like this works for me but I can't promise the regex catches everything:



    bash -ix .bashrc 2> >(grep -E '^+* (.|source)')


    I guess you might also want the error messages, so something like:



    bash -ix .bashrc 2> >(grep -E -e '^+* (.|source)' -e 'command not found')


    If for some reason none of this worked, I would resort to strace -e open bash or something like that, to find every time any file is opened by your bash session. But that's an even more heavyweight / noisy solution.






    share|improve this answer








    New contributor




    Ben Millwood is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.



















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



      );






      Denis Sablukov is a new contributor. Be nice, and check out our Code of Conduct.









      draft saved

      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f506503%2fhow-can-i-track-script-which-gives-me-command-not-found-right-after-the-login%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      4 Answers
      4






      active

      oldest

      votes








      4 Answers
      4






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      12














      Bash reads a number of different files on startup, even depending on how it's started (see the manual for the description). Then there's stuff like /etc/profile.d/ that aren't directly read by the shell, but can be referenced from the other startup files in many distributions.



      You'll have to go through all of those but luckily, you can just grep for the carriage return. Try e.g. something like:



      grep $'r' ~/.bashrc ~/.profile ~/.bash_login ~/.bash_profile /etc/bash.bashrc /etc/profile /etc/profile.d/*


      See also Is it possible to find out which files are setting/adding to environment variables, and their order of precedence? for a similar issue.






      share|improve this answer


















      • 6





        One more place to look for : ~/.bash_aliases

        – Weijun Zhou
        9 hours ago















      12














      Bash reads a number of different files on startup, even depending on how it's started (see the manual for the description). Then there's stuff like /etc/profile.d/ that aren't directly read by the shell, but can be referenced from the other startup files in many distributions.



      You'll have to go through all of those but luckily, you can just grep for the carriage return. Try e.g. something like:



      grep $'r' ~/.bashrc ~/.profile ~/.bash_login ~/.bash_profile /etc/bash.bashrc /etc/profile /etc/profile.d/*


      See also Is it possible to find out which files are setting/adding to environment variables, and their order of precedence? for a similar issue.






      share|improve this answer


















      • 6





        One more place to look for : ~/.bash_aliases

        – Weijun Zhou
        9 hours ago













      12












      12








      12







      Bash reads a number of different files on startup, even depending on how it's started (see the manual for the description). Then there's stuff like /etc/profile.d/ that aren't directly read by the shell, but can be referenced from the other startup files in many distributions.



      You'll have to go through all of those but luckily, you can just grep for the carriage return. Try e.g. something like:



      grep $'r' ~/.bashrc ~/.profile ~/.bash_login ~/.bash_profile /etc/bash.bashrc /etc/profile /etc/profile.d/*


      See also Is it possible to find out which files are setting/adding to environment variables, and their order of precedence? for a similar issue.






      share|improve this answer













      Bash reads a number of different files on startup, even depending on how it's started (see the manual for the description). Then there's stuff like /etc/profile.d/ that aren't directly read by the shell, but can be referenced from the other startup files in many distributions.



      You'll have to go through all of those but luckily, you can just grep for the carriage return. Try e.g. something like:



      grep $'r' ~/.bashrc ~/.profile ~/.bash_login ~/.bash_profile /etc/bash.bashrc /etc/profile /etc/profile.d/*


      See also Is it possible to find out which files are setting/adding to environment variables, and their order of precedence? for a similar issue.







      share|improve this answer












      share|improve this answer



      share|improve this answer










      answered 14 hours ago









      ilkkachuilkkachu

      61.5k10100177




      61.5k10100177







      • 6





        One more place to look for : ~/.bash_aliases

        – Weijun Zhou
        9 hours ago












      • 6





        One more place to look for : ~/.bash_aliases

        – Weijun Zhou
        9 hours ago







      6




      6





      One more place to look for : ~/.bash_aliases

      – Weijun Zhou
      9 hours ago





      One more place to look for : ~/.bash_aliases

      – Weijun Zhou
      9 hours ago













      3














      Another method is to take all of those startup scripts mentioned, and echo a string identifying each one at the start of each one.



      $ head .bashrc
      echo "Running bashrc"


      Then, on login, you will see something like this:



      running bashrc
      running bash_aliases
      -bash: $'r' : command not found
      -bash: $'r' : command not found
      -bash: $'r' : command not found
      running something_else


      At that point you can conclude that, (in the example above) .bash_aliases contains the offending line endings.



      Once you have identified the file, but the problem lines don't jump out at you, you can use the same method to track down the line. Echo a message halfway through the file, then 3/4ths or 1/4s through, depending on the output. That way you can track down the line, depending on whether it echoes before or after your echo.






      share|improve this answer























      • Yeah, this method is good if one can quickly automize it, otherwise it is almost the same as look through all these files.

        – Denis Sablukov
        6 hours ago











      • Note that you might want to also say 'done running <file>' at the end of each one. In this case it doesn't really matter unless only some of the lines have CR line endings, but if you're looking for another error it could be in your .bashrc after you source .bash_aliases.

        – Ben Millwood
        2 hours ago















      3














      Another method is to take all of those startup scripts mentioned, and echo a string identifying each one at the start of each one.



      $ head .bashrc
      echo "Running bashrc"


      Then, on login, you will see something like this:



      running bashrc
      running bash_aliases
      -bash: $'r' : command not found
      -bash: $'r' : command not found
      -bash: $'r' : command not found
      running something_else


      At that point you can conclude that, (in the example above) .bash_aliases contains the offending line endings.



      Once you have identified the file, but the problem lines don't jump out at you, you can use the same method to track down the line. Echo a message halfway through the file, then 3/4ths or 1/4s through, depending on the output. That way you can track down the line, depending on whether it echoes before or after your echo.






      share|improve this answer























      • Yeah, this method is good if one can quickly automize it, otherwise it is almost the same as look through all these files.

        – Denis Sablukov
        6 hours ago











      • Note that you might want to also say 'done running <file>' at the end of each one. In this case it doesn't really matter unless only some of the lines have CR line endings, but if you're looking for another error it could be in your .bashrc after you source .bash_aliases.

        – Ben Millwood
        2 hours ago













      3












      3








      3







      Another method is to take all of those startup scripts mentioned, and echo a string identifying each one at the start of each one.



      $ head .bashrc
      echo "Running bashrc"


      Then, on login, you will see something like this:



      running bashrc
      running bash_aliases
      -bash: $'r' : command not found
      -bash: $'r' : command not found
      -bash: $'r' : command not found
      running something_else


      At that point you can conclude that, (in the example above) .bash_aliases contains the offending line endings.



      Once you have identified the file, but the problem lines don't jump out at you, you can use the same method to track down the line. Echo a message halfway through the file, then 3/4ths or 1/4s through, depending on the output. That way you can track down the line, depending on whether it echoes before or after your echo.






      share|improve this answer













      Another method is to take all of those startup scripts mentioned, and echo a string identifying each one at the start of each one.



      $ head .bashrc
      echo "Running bashrc"


      Then, on login, you will see something like this:



      running bashrc
      running bash_aliases
      -bash: $'r' : command not found
      -bash: $'r' : command not found
      -bash: $'r' : command not found
      running something_else


      At that point you can conclude that, (in the example above) .bash_aliases contains the offending line endings.



      Once you have identified the file, but the problem lines don't jump out at you, you can use the same method to track down the line. Echo a message halfway through the file, then 3/4ths or 1/4s through, depending on the output. That way you can track down the line, depending on whether it echoes before or after your echo.







      share|improve this answer












      share|improve this answer



      share|improve this answer










      answered 7 hours ago









      user394user394

      5,032155174




      5,032155174












      • Yeah, this method is good if one can quickly automize it, otherwise it is almost the same as look through all these files.

        – Denis Sablukov
        6 hours ago











      • Note that you might want to also say 'done running <file>' at the end of each one. In this case it doesn't really matter unless only some of the lines have CR line endings, but if you're looking for another error it could be in your .bashrc after you source .bash_aliases.

        – Ben Millwood
        2 hours ago

















      • Yeah, this method is good if one can quickly automize it, otherwise it is almost the same as look through all these files.

        – Denis Sablukov
        6 hours ago











      • Note that you might want to also say 'done running <file>' at the end of each one. In this case it doesn't really matter unless only some of the lines have CR line endings, but if you're looking for another error it could be in your .bashrc after you source .bash_aliases.

        – Ben Millwood
        2 hours ago
















      Yeah, this method is good if one can quickly automize it, otherwise it is almost the same as look through all these files.

      – Denis Sablukov
      6 hours ago





      Yeah, this method is good if one can quickly automize it, otherwise it is almost the same as look through all these files.

      – Denis Sablukov
      6 hours ago













      Note that you might want to also say 'done running <file>' at the end of each one. In this case it doesn't really matter unless only some of the lines have CR line endings, but if you're looking for another error it could be in your .bashrc after you source .bash_aliases.

      – Ben Millwood
      2 hours ago





      Note that you might want to also say 'done running <file>' at the end of each one. In this case it doesn't really matter unless only some of the lines have CR line endings, but if you're looking for another error it could be in your .bashrc after you source .bash_aliases.

      – Ben Millwood
      2 hours ago











      1














      file(1) can be helpful here as well.



      $file *

      signin: Python script, ASCII text
      signup: Python script, ASCII text, with CRLF line terminators
      site_off.htm: XML 1.0 document, ASCII text
      sitemaps: directory


      I can see that signup needs to have those pesky Windows CRLF line-endings removed.



      For a recursive directly like /home/username you could probably combine with find and xargs (and maybe a grep, too):



      $ find . | xargs file | grep CR

      ./foo_data/V: ASCII text, with CR, LF line terminators
      ./foo_data/Y: ASCII text, with CR, LF line terminators





      share|improve this answer



























        1














        file(1) can be helpful here as well.



        $file *

        signin: Python script, ASCII text
        signup: Python script, ASCII text, with CRLF line terminators
        site_off.htm: XML 1.0 document, ASCII text
        sitemaps: directory


        I can see that signup needs to have those pesky Windows CRLF line-endings removed.



        For a recursive directly like /home/username you could probably combine with find and xargs (and maybe a grep, too):



        $ find . | xargs file | grep CR

        ./foo_data/V: ASCII text, with CR, LF line terminators
        ./foo_data/Y: ASCII text, with CR, LF line terminators





        share|improve this answer

























          1












          1








          1







          file(1) can be helpful here as well.



          $file *

          signin: Python script, ASCII text
          signup: Python script, ASCII text, with CRLF line terminators
          site_off.htm: XML 1.0 document, ASCII text
          sitemaps: directory


          I can see that signup needs to have those pesky Windows CRLF line-endings removed.



          For a recursive directly like /home/username you could probably combine with find and xargs (and maybe a grep, too):



          $ find . | xargs file | grep CR

          ./foo_data/V: ASCII text, with CR, LF line terminators
          ./foo_data/Y: ASCII text, with CR, LF line terminators





          share|improve this answer













          file(1) can be helpful here as well.



          $file *

          signin: Python script, ASCII text
          signup: Python script, ASCII text, with CRLF line terminators
          site_off.htm: XML 1.0 document, ASCII text
          sitemaps: directory


          I can see that signup needs to have those pesky Windows CRLF line-endings removed.



          For a recursive directly like /home/username you could probably combine with find and xargs (and maybe a grep, too):



          $ find . | xargs file | grep CR

          ./foo_data/V: ASCII text, with CR, LF line terminators
          ./foo_data/Y: ASCII text, with CR, LF line terminators






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 5 hours ago









          Kevin_KinseyKevin_Kinsey

          1664




          1664





















              0














              I take the hard part of this question to be not "hwo can I find carriage returns in a file?" but "how can I find out which files my bashrc uses?"



              For the second question, you can try something like this:



              bash -x .bashrc


              This will show you everything your bashrc does, including all the files it refers to. It's noisy, but should help you track down which files are being used.



              Except in fact, my (and many other) .bashrc files exit early if not run interactively, so you have to trick it into passing that check:



              bash -ix .bashrc


              Here the -i forces interactive mode.



              To grep out just the cases where you source a file, something like this works for me but I can't promise the regex catches everything:



              bash -ix .bashrc 2> >(grep -E '^+* (.|source)')


              I guess you might also want the error messages, so something like:



              bash -ix .bashrc 2> >(grep -E -e '^+* (.|source)' -e 'command not found')


              If for some reason none of this worked, I would resort to strace -e open bash or something like that, to find every time any file is opened by your bash session. But that's an even more heavyweight / noisy solution.






              share|improve this answer








              New contributor




              Ben Millwood is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
              Check out our Code of Conduct.
























                0














                I take the hard part of this question to be not "hwo can I find carriage returns in a file?" but "how can I find out which files my bashrc uses?"



                For the second question, you can try something like this:



                bash -x .bashrc


                This will show you everything your bashrc does, including all the files it refers to. It's noisy, but should help you track down which files are being used.



                Except in fact, my (and many other) .bashrc files exit early if not run interactively, so you have to trick it into passing that check:



                bash -ix .bashrc


                Here the -i forces interactive mode.



                To grep out just the cases where you source a file, something like this works for me but I can't promise the regex catches everything:



                bash -ix .bashrc 2> >(grep -E '^+* (.|source)')


                I guess you might also want the error messages, so something like:



                bash -ix .bashrc 2> >(grep -E -e '^+* (.|source)' -e 'command not found')


                If for some reason none of this worked, I would resort to strace -e open bash or something like that, to find every time any file is opened by your bash session. But that's an even more heavyweight / noisy solution.






                share|improve this answer








                New contributor




                Ben Millwood is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.






















                  0












                  0








                  0







                  I take the hard part of this question to be not "hwo can I find carriage returns in a file?" but "how can I find out which files my bashrc uses?"



                  For the second question, you can try something like this:



                  bash -x .bashrc


                  This will show you everything your bashrc does, including all the files it refers to. It's noisy, but should help you track down which files are being used.



                  Except in fact, my (and many other) .bashrc files exit early if not run interactively, so you have to trick it into passing that check:



                  bash -ix .bashrc


                  Here the -i forces interactive mode.



                  To grep out just the cases where you source a file, something like this works for me but I can't promise the regex catches everything:



                  bash -ix .bashrc 2> >(grep -E '^+* (.|source)')


                  I guess you might also want the error messages, so something like:



                  bash -ix .bashrc 2> >(grep -E -e '^+* (.|source)' -e 'command not found')


                  If for some reason none of this worked, I would resort to strace -e open bash or something like that, to find every time any file is opened by your bash session. But that's an even more heavyweight / noisy solution.






                  share|improve this answer








                  New contributor




                  Ben Millwood is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.










                  I take the hard part of this question to be not "hwo can I find carriage returns in a file?" but "how can I find out which files my bashrc uses?"



                  For the second question, you can try something like this:



                  bash -x .bashrc


                  This will show you everything your bashrc does, including all the files it refers to. It's noisy, but should help you track down which files are being used.



                  Except in fact, my (and many other) .bashrc files exit early if not run interactively, so you have to trick it into passing that check:



                  bash -ix .bashrc


                  Here the -i forces interactive mode.



                  To grep out just the cases where you source a file, something like this works for me but I can't promise the regex catches everything:



                  bash -ix .bashrc 2> >(grep -E '^+* (.|source)')


                  I guess you might also want the error messages, so something like:



                  bash -ix .bashrc 2> >(grep -E -e '^+* (.|source)' -e 'command not found')


                  If for some reason none of this worked, I would resort to strace -e open bash or something like that, to find every time any file is opened by your bash session. But that's an even more heavyweight / noisy solution.







                  share|improve this answer








                  New contributor




                  Ben Millwood is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.









                  share|improve this answer



                  share|improve this answer






                  New contributor




                  Ben Millwood is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.









                  answered 2 hours ago









                  Ben MillwoodBen Millwood

                  1013




                  1013




                  New contributor




                  Ben Millwood is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.





                  New contributor





                  Ben Millwood is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.






                  Ben Millwood is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.




















                      Denis Sablukov is a new contributor. Be nice, and check out our Code of Conduct.









                      draft saved

                      draft discarded


















                      Denis Sablukov is a new contributor. Be nice, and check out our Code of Conduct.












                      Denis Sablukov is a new contributor. Be nice, and check out our Code of Conduct.











                      Denis Sablukov is a new contributor. Be nice, and check out our Code of Conduct.














                      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%2f506503%2fhow-can-i-track-script-which-gives-me-command-not-found-right-after-the-login%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 should I use the fbox command correctly to avoid producing a Bad Box message?How to put a long piece of text in a box?How to specify height and width of fboxIs there an arrayrulecolor-like command to change the rule color of fbox?What is the command to highlight bad boxes in pdf?Why does fbox sometimes place the box *over* the graphic image?how to put the text in the boxHow to create command for a box where text inside the box can automatically adjust?how can I make an fbox like command with certain color, shape and width of border?how to use fbox in align modeFbox increase the spacing between the box and it content (inner margin)how to change the box height of an equationWhat is the use of the hbox in a newcommand command?

                      152 Atala Notae | Nexus externi | Tabula navigationis"Discovery Circumstances: Numbered Minor Planets"2000152Small-Body Database

                      Doxepinum Nexus interni Notae | Tabula navigationis3158DB01142WHOa682390"Structural Analysis of the Histamine H1 Receptor""Transdermal and Topical Drug Administration in the Treatment of Pain""Antidepressants as antipruritic agents: A review"