Difference between revisions of "File Consolidation Script (Basic)"

From Michael's Information Zone
Jump to navigation Jump to search
(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...")
 
 
Line 1: Line 1:
<syntaxhighlight lang="python" line="1" >
+
<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/ \;