views:

18

answers:

2

hello.

how to automatic deleting files to a folder in ubuntu?, I need to do a script to delete files from a folder that is filled with the execution of a process on my server.

thanks for your answers and hel

+2  A: 

If rm folder/* isn't the answer you seek, could you clarify your question?

RedGrittyBrick
+1  A: 

The proper command would be rm -rf folder/ to delete files recursively from that particular folder. Again, if this is not the right answer, can you rephrase your question again?

tanjir