Xubuntu find files in thunar












3















Xubuntu Xenial and I use thunar as file manager. I am also new to LINUX.



I need a right click custom action to search files with wild cards. I implemented the custom action with catfish but this does not allow search with wild cards.



I looked into the find command and would like to use it with the read command to pass the wild card.



I tested the following command in my terminal window and it seems to work:



$(read -p 'wildcard : ');find ~/home -iname '$wildcard'


But where can I display the result?










share|improve this question





























    3















    Xubuntu Xenial and I use thunar as file manager. I am also new to LINUX.



    I need a right click custom action to search files with wild cards. I implemented the custom action with catfish but this does not allow search with wild cards.



    I looked into the find command and would like to use it with the read command to pass the wild card.



    I tested the following command in my terminal window and it seems to work:



    $(read -p 'wildcard : ');find ~/home -iname '$wildcard'


    But where can I display the result?










    share|improve this question



























      3












      3








      3








      Xubuntu Xenial and I use thunar as file manager. I am also new to LINUX.



      I need a right click custom action to search files with wild cards. I implemented the custom action with catfish but this does not allow search with wild cards.



      I looked into the find command and would like to use it with the read command to pass the wild card.



      I tested the following command in my terminal window and it seems to work:



      $(read -p 'wildcard : ');find ~/home -iname '$wildcard'


      But where can I display the result?










      share|improve this question
















      Xubuntu Xenial and I use thunar as file manager. I am also new to LINUX.



      I need a right click custom action to search files with wild cards. I implemented the custom action with catfish but this does not allow search with wild cards.



      I looked into the find command and would like to use it with the read command to pass the wild card.



      I tested the following command in my terminal window and it seems to work:



      $(read -p 'wildcard : ');find ~/home -iname '$wildcard'


      But where can I display the result?







      command-line thunar-custom-actions






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Aug 8 '18 at 12:20







      piscvau

















      asked Aug 8 '18 at 9:14









      piscvaupiscvau

      64110




      64110






















          2 Answers
          2






          active

          oldest

          votes


















          0














          What exactly are you trying to accomplish? While the simple "start typing" search in thunar doesn't have wildcards and needs a match from the first letter, the catfish search that already comes with thunar on Xubuntu is quite powerful (and also cpu intensive).



          Simply right click on the folder you wish to search and select the "Find in this folder".



          A new window will appear, and it is a simple match search. As long as everything you type matches somewhere you'll get the results back. There is no need for a traditional * as wildcard. Just separate the different 'parts' you want to search with a space. There are plenty of other options, like also searching file contents, exact matches, etc.



          enter image description here






          share|improve this answer


























          • From what version it is available? On Thunar 1.6.15 I don't have it

            – Suncatcher
            7 hours ago



















          0














          For me "just typing" didin't work.



          In Thunar press Ctrl-F will call typeahead searchbox, and Strl-F will call searching by pattern.






          share|improve this answer


























          • As this stands, it looks almost more like a comment than an answer. Please edit to expand. Furthermore, how old is "older?" Don't just give a one-liner; explain why you right, ideally with citations. Answers without explanation are subject to removal.

            – anonymous2
            6 hours ago











          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "89"
          };
          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%2faskubuntu.com%2fquestions%2f1063449%2fxubuntu-find-files-in-thunar%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          2 Answers
          2






          active

          oldest

          votes








          2 Answers
          2






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          What exactly are you trying to accomplish? While the simple "start typing" search in thunar doesn't have wildcards and needs a match from the first letter, the catfish search that already comes with thunar on Xubuntu is quite powerful (and also cpu intensive).



          Simply right click on the folder you wish to search and select the "Find in this folder".



          A new window will appear, and it is a simple match search. As long as everything you type matches somewhere you'll get the results back. There is no need for a traditional * as wildcard. Just separate the different 'parts' you want to search with a space. There are plenty of other options, like also searching file contents, exact matches, etc.



          enter image description here






          share|improve this answer


























          • From what version it is available? On Thunar 1.6.15 I don't have it

            – Suncatcher
            7 hours ago
















          0














          What exactly are you trying to accomplish? While the simple "start typing" search in thunar doesn't have wildcards and needs a match from the first letter, the catfish search that already comes with thunar on Xubuntu is quite powerful (and also cpu intensive).



          Simply right click on the folder you wish to search and select the "Find in this folder".



          A new window will appear, and it is a simple match search. As long as everything you type matches somewhere you'll get the results back. There is no need for a traditional * as wildcard. Just separate the different 'parts' you want to search with a space. There are plenty of other options, like also searching file contents, exact matches, etc.



          enter image description here






          share|improve this answer


























          • From what version it is available? On Thunar 1.6.15 I don't have it

            – Suncatcher
            7 hours ago














          0












          0








          0







          What exactly are you trying to accomplish? While the simple "start typing" search in thunar doesn't have wildcards and needs a match from the first letter, the catfish search that already comes with thunar on Xubuntu is quite powerful (and also cpu intensive).



          Simply right click on the folder you wish to search and select the "Find in this folder".



          A new window will appear, and it is a simple match search. As long as everything you type matches somewhere you'll get the results back. There is no need for a traditional * as wildcard. Just separate the different 'parts' you want to search with a space. There are plenty of other options, like also searching file contents, exact matches, etc.



          enter image description here






          share|improve this answer















          What exactly are you trying to accomplish? While the simple "start typing" search in thunar doesn't have wildcards and needs a match from the first letter, the catfish search that already comes with thunar on Xubuntu is quite powerful (and also cpu intensive).



          Simply right click on the folder you wish to search and select the "Find in this folder".



          A new window will appear, and it is a simple match search. As long as everything you type matches somewhere you'll get the results back. There is no need for a traditional * as wildcard. Just separate the different 'parts' you want to search with a space. There are plenty of other options, like also searching file contents, exact matches, etc.



          enter image description here







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Aug 8 '18 at 19:38

























          answered Aug 8 '18 at 13:00









          PodestaPodesta

          1113




          1113













          • From what version it is available? On Thunar 1.6.15 I don't have it

            – Suncatcher
            7 hours ago



















          • From what version it is available? On Thunar 1.6.15 I don't have it

            – Suncatcher
            7 hours ago

















          From what version it is available? On Thunar 1.6.15 I don't have it

          – Suncatcher
          7 hours ago





          From what version it is available? On Thunar 1.6.15 I don't have it

          – Suncatcher
          7 hours ago













          0














          For me "just typing" didin't work.



          In Thunar press Ctrl-F will call typeahead searchbox, and Strl-F will call searching by pattern.






          share|improve this answer


























          • As this stands, it looks almost more like a comment than an answer. Please edit to expand. Furthermore, how old is "older?" Don't just give a one-liner; explain why you right, ideally with citations. Answers without explanation are subject to removal.

            – anonymous2
            6 hours ago
















          0














          For me "just typing" didin't work.



          In Thunar press Ctrl-F will call typeahead searchbox, and Strl-F will call searching by pattern.






          share|improve this answer


























          • As this stands, it looks almost more like a comment than an answer. Please edit to expand. Furthermore, how old is "older?" Don't just give a one-liner; explain why you right, ideally with citations. Answers without explanation are subject to removal.

            – anonymous2
            6 hours ago














          0












          0








          0







          For me "just typing" didin't work.



          In Thunar press Ctrl-F will call typeahead searchbox, and Strl-F will call searching by pattern.






          share|improve this answer















          For me "just typing" didin't work.



          In Thunar press Ctrl-F will call typeahead searchbox, and Strl-F will call searching by pattern.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited 5 hours ago

























          answered 7 hours ago









          SuncatcherSuncatcher

          12317




          12317













          • As this stands, it looks almost more like a comment than an answer. Please edit to expand. Furthermore, how old is "older?" Don't just give a one-liner; explain why you right, ideally with citations. Answers without explanation are subject to removal.

            – anonymous2
            6 hours ago



















          • As this stands, it looks almost more like a comment than an answer. Please edit to expand. Furthermore, how old is "older?" Don't just give a one-liner; explain why you right, ideally with citations. Answers without explanation are subject to removal.

            – anonymous2
            6 hours ago

















          As this stands, it looks almost more like a comment than an answer. Please edit to expand. Furthermore, how old is "older?" Don't just give a one-liner; explain why you right, ideally with citations. Answers without explanation are subject to removal.

          – anonymous2
          6 hours ago





          As this stands, it looks almost more like a comment than an answer. Please edit to expand. Furthermore, how old is "older?" Don't just give a one-liner; explain why you right, ideally with citations. Answers without explanation are subject to removal.

          – anonymous2
          6 hours ago


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Ask Ubuntu!


          • 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%2faskubuntu.com%2fquestions%2f1063449%2fxubuntu-find-files-in-thunar%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

          香粉寮

          GameSpot