Find the answer to your Linux question:
Results 1 to 3 of 3
Good morning Team, I need some help please, I would like to list all the files in a folder called backup anywhere on the system where that folder is.. Any ...
  1. #1
    Just Joined!
    Join Date
    Jul 2008
    Posts
    5

    Cool help with bash

    Good morning Team,

    I need some help please, I would like to list all the files in a folder called backup anywhere on the system where that folder is..

    Any help would be great..

    Thanks from Alan

  2. #2
    Linux Engineer khafa's Avatar
    Join Date
    Apr 2008
    Location
    Tokyo, Japan
    Posts
    858
    hi,


    does this do it
    Code:
    find / -type d -name backup -exec ls {} \; 2> /dev/null
    Linux and me it's a love story

  3. #3
    Just Joined!
    Join Date
    Jul 2008
    Posts
    5
    Quote Originally Posted by khafa View Post
    hi,


    does this do it
    Code:
    find / -type d -name backup -exec ls {} \; 2> /dev/null
    Hi Khafa,

    That works brill thank you..

    All the best from Alan

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...