Move files to directories based on extension

后端 未结 6 1461
慢半拍i
慢半拍i 2020-12-14 02:06

I am new to Linux. I am trying to write a shell script which will move files to certain folders based on their extension, like for example in my downloads f

6条回答
  •  旧巷少年郎
    2020-12-14 02:22

    incron will watch the filesystem and perform run commands upon certain events.

    You can combine multiple commands on a single line by using a command separator. The unconditional serialized command separator is ;.

    command1 ; command2
    

提交回复
热议问题