BASH copy all files except one

后端 未结 8 579
逝去的感伤
逝去的感伤 2020-11-30 19:13

I would like to copy all files out of a dir except for one named Default.png. It seems that there are a number of ways to do this. What seems the most effective to you?

8条回答
  •  一生所求
    2020-11-30 19:31

    # chattr +i /files_to_exclude
    # cp source destination
    # chattr -i /files_to_exclude
    

提交回复
热议问题