Difference between revisions of "File Consolidation Script (Basic)"
Jump to navigation
Jump to search
Michael.mast (talk | contribs) (Created page with "<syntaxhighlight lang="python" line="1" > #!/bin/sh date >> cleanup.log find /TEMP/video/trainingroom/ -name '*.wav' -exec mv {} /TEMP/video/archiveprep/audio/ \; find /TEMP/v...") |
Michael.mast (talk | contribs) |
||
Line 1: | Line 1: | ||
− | <syntaxhighlight lang=" | + | <syntaxhighlight lang="bash" > |
#!/bin/sh | #!/bin/sh | ||
date >> cleanup.log | date >> cleanup.log |
Latest revision as of 14:05, 3 April 2016
#!/bin/sh
date >> cleanup.log
find /TEMP/video/trainingroom/ -name '*.wav' -exec mv {} /TEMP/video/archiveprep/audio/ \;
find /TEMP/video/trainingroom/ -name '*.avi' -exec mv {} /TEMP/video/archiveprep/video/ \;