Recent content by linux_NBcKTU

  1. L

    What is the best method in bash to copy large amount of files

    Thanks for any seriously meant answer, but my datas are in many subfolders and i don't wanna copy that folder structure... and defraggin in in btrfs already avoided (look at autodefrag)
  2. L

    What is the best method in bash to copy large amount of files

    "Huh, you sure you're not thinking too hard about this? Maybe I'm just not catching what you're throwing." yes I agree, sometimes I think that too. "You want to copy a bunch of files of a certain extension, from multiple directories into a single directory.<...> Then you end up with a...
  3. L

    What is the best method in bash to copy large amount of files

    Really thanks for the answer, but I meant to copy no folders but transferring all files into one single destination folder just eg. that I'm using BTRFS. The problem for me eg. so far is with find maybe also rsync is that these commands r' looking for folders and moving the RW head of a HDD too...
  4. L

    What is the best method in bash to copy large amount of files

    My question: I have a large amount of files on a disk and I have three different methods to move/copy them: 1. using find: ``` find /disk -xdev -type f -iname "*.pdf" -exec cp -ga "{}" /dest \: ``` 2. using find print0 and grep -z: ``` find /disk -xdev type f -iname "*" -print0 > ./alllist.txt...
Top