How to grep while excluding some words?












-3















I wanted to grep the word "force" but most of the output listed is from the command -force.



When I did grep -v "-force" filename , it says grep : orce most probably because of the -f command.



I just want to find a force signal from files using grep. How?










share|improve this question























  • Do you want to say you want to grep "force" but not "-force"?

    – HongboZhu
    Nov 21 '18 at 11:56
















-3















I wanted to grep the word "force" but most of the output listed is from the command -force.



When I did grep -v "-force" filename , it says grep : orce most probably because of the -f command.



I just want to find a force signal from files using grep. How?










share|improve this question























  • Do you want to say you want to grep "force" but not "-force"?

    – HongboZhu
    Nov 21 '18 at 11:56














-3












-3








-3








I wanted to grep the word "force" but most of the output listed is from the command -force.



When I did grep -v "-force" filename , it says grep : orce most probably because of the -f command.



I just want to find a force signal from files using grep. How?










share|improve this question














I wanted to grep the word "force" but most of the output listed is from the command -force.



When I did grep -v "-force" filename , it says grep : orce most probably because of the -f command.



I just want to find a force signal from files using grep. How?







linux unix command






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 21 '18 at 6:29









Nur Sakinah BurhanuddinNur Sakinah Burhanuddin

11




11













  • Do you want to say you want to grep "force" but not "-force"?

    – HongboZhu
    Nov 21 '18 at 11:56



















  • Do you want to say you want to grep "force" but not "-force"?

    – HongboZhu
    Nov 21 '18 at 11:56

















Do you want to say you want to grep "force" but not "-force"?

– HongboZhu
Nov 21 '18 at 11:56





Do you want to say you want to grep "force" but not "-force"?

– HongboZhu
Nov 21 '18 at 11:56












5 Answers
5






active

oldest

votes


















1














use grep -v -- "-force" - the double - signals that there are no more options being expected.






share|improve this answer


























  • this is really a very nice trick!

    – HongboZhu
    Nov 21 '18 at 12:12











  • the complete answer is grep -v -- "-force" | grep force

    – HongboZhu
    Nov 21 '18 at 12:15



















0














If you want to grep specific word from file then we can use cat command



    # cat filename.txt | grep force 


For other basic Commands






share|improve this answer
























  • cat is redundant here. simply grep the file. Google "useless use of cat" :)

    – HongboZhu
    Nov 21 '18 at 12:14





















0














Try this:



grep -v "-force" filename | grep force 


First use -v to surppress lines containing '-force'. Then grep force in the remaining lines.






share|improve this answer





















  • 1





    It would be better if you added an explanation to the answer.

    – Germano Plebani
    Nov 21 '18 at 8:23











  • In this case, you need to escape the hyphen by backslash: grep -v "-force" filename | grep force .

    – HongboZhu
    Nov 21 '18 at 12:08



















0














this line maybe simpler:



grep '[^-]force' tmp


it says: grep "force", but only if it does not has a prefix - by using [^]. See some simple regular expression examples here.






share|improve this answer































    0














    Use [-] to remove the special significance. Check this out:



    > cat rand_file.txt
    1. list items of random text
    2. -force
    3. look similar as the first batch
    4. force
    5. some random text
    > grep -v "-force" rand_file.txt
    grep: orce: No such file or directory
    > grep -v "[-]force" rand_file.txt | grep force
    4. force
    >





    share|improve this answer


























    • I think you need to add | grep force to the end of your last command as only line 4 is desirable (force signal).

      – HongboZhu
      Nov 21 '18 at 12:03













    • yes..right..let me update the answer

      – stack0114106
      Nov 21 '18 at 12:07











    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%2f53406384%2fhow-to-grep-while-excluding-some-words%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    5 Answers
    5






    active

    oldest

    votes








    5 Answers
    5






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1














    use grep -v -- "-force" - the double - signals that there are no more options being expected.






    share|improve this answer


























    • this is really a very nice trick!

      – HongboZhu
      Nov 21 '18 at 12:12











    • the complete answer is grep -v -- "-force" | grep force

      – HongboZhu
      Nov 21 '18 at 12:15
















    1














    use grep -v -- "-force" - the double - signals that there are no more options being expected.






    share|improve this answer


























    • this is really a very nice trick!

      – HongboZhu
      Nov 21 '18 at 12:12











    • the complete answer is grep -v -- "-force" | grep force

      – HongboZhu
      Nov 21 '18 at 12:15














    1












    1








    1







    use grep -v -- "-force" - the double - signals that there are no more options being expected.






    share|improve this answer















    use grep -v -- "-force" - the double - signals that there are no more options being expected.







    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Nov 21 '18 at 12:16









    HongboZhu

    2,90922128




    2,90922128










    answered Nov 21 '18 at 6:55









    Andreas P.Andreas P.

    111




    111













    • this is really a very nice trick!

      – HongboZhu
      Nov 21 '18 at 12:12











    • the complete answer is grep -v -- "-force" | grep force

      – HongboZhu
      Nov 21 '18 at 12:15



















    • this is really a very nice trick!

      – HongboZhu
      Nov 21 '18 at 12:12











    • the complete answer is grep -v -- "-force" | grep force

      – HongboZhu
      Nov 21 '18 at 12:15

















    this is really a very nice trick!

    – HongboZhu
    Nov 21 '18 at 12:12





    this is really a very nice trick!

    – HongboZhu
    Nov 21 '18 at 12:12













    the complete answer is grep -v -- "-force" | grep force

    – HongboZhu
    Nov 21 '18 at 12:15





    the complete answer is grep -v -- "-force" | grep force

    – HongboZhu
    Nov 21 '18 at 12:15













    0














    If you want to grep specific word from file then we can use cat command



        # cat filename.txt | grep force 


    For other basic Commands






    share|improve this answer
























    • cat is redundant here. simply grep the file. Google "useless use of cat" :)

      – HongboZhu
      Nov 21 '18 at 12:14


















    0














    If you want to grep specific word from file then we can use cat command



        # cat filename.txt | grep force 


    For other basic Commands






    share|improve this answer
























    • cat is redundant here. simply grep the file. Google "useless use of cat" :)

      – HongboZhu
      Nov 21 '18 at 12:14
















    0












    0








    0







    If you want to grep specific word from file then we can use cat command



        # cat filename.txt | grep force 


    For other basic Commands






    share|improve this answer













    If you want to grep specific word from file then we can use cat command



        # cat filename.txt | grep force 


    For other basic Commands







    share|improve this answer












    share|improve this answer



    share|improve this answer










    answered Nov 21 '18 at 7:10









    Vinay PatilVinay Patil

    11




    11













    • cat is redundant here. simply grep the file. Google "useless use of cat" :)

      – HongboZhu
      Nov 21 '18 at 12:14





















    • cat is redundant here. simply grep the file. Google "useless use of cat" :)

      – HongboZhu
      Nov 21 '18 at 12:14



















    cat is redundant here. simply grep the file. Google "useless use of cat" :)

    – HongboZhu
    Nov 21 '18 at 12:14







    cat is redundant here. simply grep the file. Google "useless use of cat" :)

    – HongboZhu
    Nov 21 '18 at 12:14













    0














    Try this:



    grep -v "-force" filename | grep force 


    First use -v to surppress lines containing '-force'. Then grep force in the remaining lines.






    share|improve this answer





















    • 1





      It would be better if you added an explanation to the answer.

      – Germano Plebani
      Nov 21 '18 at 8:23











    • In this case, you need to escape the hyphen by backslash: grep -v "-force" filename | grep force .

      – HongboZhu
      Nov 21 '18 at 12:08
















    0














    Try this:



    grep -v "-force" filename | grep force 


    First use -v to surppress lines containing '-force'. Then grep force in the remaining lines.






    share|improve this answer





















    • 1





      It would be better if you added an explanation to the answer.

      – Germano Plebani
      Nov 21 '18 at 8:23











    • In this case, you need to escape the hyphen by backslash: grep -v "-force" filename | grep force .

      – HongboZhu
      Nov 21 '18 at 12:08














    0












    0








    0







    Try this:



    grep -v "-force" filename | grep force 


    First use -v to surppress lines containing '-force'. Then grep force in the remaining lines.






    share|improve this answer















    Try this:



    grep -v "-force" filename | grep force 


    First use -v to surppress lines containing '-force'. Then grep force in the remaining lines.







    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Nov 21 '18 at 11:58









    HongboZhu

    2,90922128




    2,90922128










    answered Nov 21 '18 at 7:01









    Mayank PorwalMayank Porwal

    4,9202724




    4,9202724








    • 1





      It would be better if you added an explanation to the answer.

      – Germano Plebani
      Nov 21 '18 at 8:23











    • In this case, you need to escape the hyphen by backslash: grep -v "-force" filename | grep force .

      – HongboZhu
      Nov 21 '18 at 12:08














    • 1





      It would be better if you added an explanation to the answer.

      – Germano Plebani
      Nov 21 '18 at 8:23











    • In this case, you need to escape the hyphen by backslash: grep -v "-force" filename | grep force .

      – HongboZhu
      Nov 21 '18 at 12:08








    1




    1





    It would be better if you added an explanation to the answer.

    – Germano Plebani
    Nov 21 '18 at 8:23





    It would be better if you added an explanation to the answer.

    – Germano Plebani
    Nov 21 '18 at 8:23













    In this case, you need to escape the hyphen by backslash: grep -v "-force" filename | grep force .

    – HongboZhu
    Nov 21 '18 at 12:08





    In this case, you need to escape the hyphen by backslash: grep -v "-force" filename | grep force .

    – HongboZhu
    Nov 21 '18 at 12:08











    0














    this line maybe simpler:



    grep '[^-]force' tmp


    it says: grep "force", but only if it does not has a prefix - by using [^]. See some simple regular expression examples here.






    share|improve this answer




























      0














      this line maybe simpler:



      grep '[^-]force' tmp


      it says: grep "force", but only if it does not has a prefix - by using [^]. See some simple regular expression examples here.






      share|improve this answer


























        0












        0








        0







        this line maybe simpler:



        grep '[^-]force' tmp


        it says: grep "force", but only if it does not has a prefix - by using [^]. See some simple regular expression examples here.






        share|improve this answer













        this line maybe simpler:



        grep '[^-]force' tmp


        it says: grep "force", but only if it does not has a prefix - by using [^]. See some simple regular expression examples here.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 21 '18 at 12:06









        HongboZhuHongboZhu

        2,90922128




        2,90922128























            0














            Use [-] to remove the special significance. Check this out:



            > cat rand_file.txt
            1. list items of random text
            2. -force
            3. look similar as the first batch
            4. force
            5. some random text
            > grep -v "-force" rand_file.txt
            grep: orce: No such file or directory
            > grep -v "[-]force" rand_file.txt | grep force
            4. force
            >





            share|improve this answer


























            • I think you need to add | grep force to the end of your last command as only line 4 is desirable (force signal).

              – HongboZhu
              Nov 21 '18 at 12:03













            • yes..right..let me update the answer

              – stack0114106
              Nov 21 '18 at 12:07
















            0














            Use [-] to remove the special significance. Check this out:



            > cat rand_file.txt
            1. list items of random text
            2. -force
            3. look similar as the first batch
            4. force
            5. some random text
            > grep -v "-force" rand_file.txt
            grep: orce: No such file or directory
            > grep -v "[-]force" rand_file.txt | grep force
            4. force
            >





            share|improve this answer


























            • I think you need to add | grep force to the end of your last command as only line 4 is desirable (force signal).

              – HongboZhu
              Nov 21 '18 at 12:03













            • yes..right..let me update the answer

              – stack0114106
              Nov 21 '18 at 12:07














            0












            0








            0







            Use [-] to remove the special significance. Check this out:



            > cat rand_file.txt
            1. list items of random text
            2. -force
            3. look similar as the first batch
            4. force
            5. some random text
            > grep -v "-force" rand_file.txt
            grep: orce: No such file or directory
            > grep -v "[-]force" rand_file.txt | grep force
            4. force
            >





            share|improve this answer















            Use [-] to remove the special significance. Check this out:



            > cat rand_file.txt
            1. list items of random text
            2. -force
            3. look similar as the first batch
            4. force
            5. some random text
            > grep -v "-force" rand_file.txt
            grep: orce: No such file or directory
            > grep -v "[-]force" rand_file.txt | grep force
            4. force
            >






            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Nov 21 '18 at 12:10









            HongboZhu

            2,90922128




            2,90922128










            answered Nov 21 '18 at 10:05









            stack0114106stack0114106

            3,4242418




            3,4242418













            • I think you need to add | grep force to the end of your last command as only line 4 is desirable (force signal).

              – HongboZhu
              Nov 21 '18 at 12:03













            • yes..right..let me update the answer

              – stack0114106
              Nov 21 '18 at 12:07



















            • I think you need to add | grep force to the end of your last command as only line 4 is desirable (force signal).

              – HongboZhu
              Nov 21 '18 at 12:03













            • yes..right..let me update the answer

              – stack0114106
              Nov 21 '18 at 12:07

















            I think you need to add | grep force to the end of your last command as only line 4 is desirable (force signal).

            – HongboZhu
            Nov 21 '18 at 12:03







            I think you need to add | grep force to the end of your last command as only line 4 is desirable (force signal).

            – HongboZhu
            Nov 21 '18 at 12:03















            yes..right..let me update the answer

            – stack0114106
            Nov 21 '18 at 12:07





            yes..right..let me update the answer

            – stack0114106
            Nov 21 '18 at 12:07


















            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%2f53406384%2fhow-to-grep-while-excluding-some-words%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

            MongoDB - Not Authorized To Execute Command

            in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

            How to fix TextFormField cause rebuild widget in Flutter