Results 1 to 4 of 4

Thread: I have not viewed the copying i require.

  1. #1
    KeithThomas is offline Junior Member
    Join Date
    Jan 2011
    Posts
    5
    Rep Power
    0

    Default I have not viewed the copying i require.

    i've exhausted 3 hours on google testing to detect the solution to this. i have a folder full of .txt registers and registers that got misextentioned, but are thought to be .txt registers. i need to mix total of them into one large .txt file. cat *.* bigfile.txt doesn't run, since *.* isn't a file or folder, so how do i said it all? if * isn't all then how the eff do i say it??

  2. #2
    GeorgeAllan is offline Junior Member
    Join Date
    Jan 2011
    Posts
    8
    Rep Power
    0

    Default

    A individual mark ("*") is a glob which way it matches all files in the modern directory

    I except your mistake is in the birdsong to cat:
    Codification:
    $ cat * bigfile.txt
    would affix the substance of all files and "bigfile.txt" and output it to the depot (textbook signal). If you necessity to instead store that output, you impoverishment to use signal redirection, using the ">" operator:
    Code:
    $cat * > bigfile.txt

  3. #3
    ThomasAllen is offline Junior Member
    Join Date
    Jan 2011
    Posts
    6
    Rep Power
    0

    Default

    yes i see my mistake now impart you now it's collection them i see the exploit. position i wasn't swing in the > before the aim. then i was using the *.* instead of * i'm so utilised to winblows terminal that it's hard to modify over.

  4. #4
    ThomasAllen is offline Junior Member
    Join Date
    Jan 2011
    Posts
    6
    Rep Power
    0

    Default

    *.*" doesn't operate in Linux since Linux does not need that registers have extensions. It doesn't even have any conception of them at the OS level.

Similar Threads

  1. Websites viewed in the address bar
    By EvansMitchell in forum General Internet Terms
    Replies: 2
    Last Post: 05-29-2010, 11:42 AM
  2. DVD copying problem
    By MoralesWard in forum Optical Drives
    Replies: 2
    Last Post: 02-25-2010, 02:16 PM
  3. Copying files
    By ager in forum Everything Else
    Replies: 1
    Last Post: 03-17-2009, 10:29 AM
  4. Copying a Folder
    By Macavi6987 in forum General Internet Terms
    Replies: 0
    Last Post: 11-24-2008, 11:22 AM
  5. Copying a file
    By Macavi6987 in forum General Internet Terms
    Replies: 0
    Last Post: 11-24-2008, 10:45 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
SEO by SubmitEdge

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48