Sponsored Content
Operating Systems OS X (Apple) Batch file to move video files and retain sub-directories Post 302522817 by DGPickett on Monday 16th of May 2011 04:55:40 PM
Old 05-16-2011
A shell script can do this for you. It needs to find all the avi files in Pictures, find all the target date dirs supporting those files, make any missing Movies dirs, and move the files.
Code:
#!/bin/ksh
 
cd Pictures
 
for f in */*.avi
do
 if [ "$f" = "*/*.avi"
 then
  break
 fi
 
 if [ ! -d ../Movies/"${f%/*}" ]
 then
  mkdir ../Movies/"${f%/*}"
 fi
 
 mv "$f" ../Movies/"$f"
done

You must tune this up for the actual absolute path of ?\Pictures\. I am assuming the slashes reverse in the shell world, not being a MAC guy.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

A Batch job to delete files from various directories

Hi, I have a shell script to find files older than 'X' days ($2) in directory path ($1) and delete them. Like this: my_file_remover.sh /usr/home/c 90 Now, I need to modify this script and add it in CRON, so that it checks other directories also. Like: my_file_remover.sh /usr/home/c... (3 Replies)
Discussion started by: guruparan18
3 Replies

2. UNIX for Dummies Questions & Answers

Batch Renaming: Change files' extensions in many sub-directories

Hi all - I'm trying to rename a large number of files all at once and need some help figuring out the command line syntax to do it. I've already done quite a bit of research with the rename and mv commands, but so far haven't found a solution that seems to work for me. So: The files exist... (10 Replies)
Discussion started by: dave920
10 Replies

3. Shell Programming and Scripting

move files and retain subdir structure

hi: I have some files like this folder1/recording1.mp3 folder1/docs/budget.doc folder2/others/misc.mp3 folder3/others/notes.doc all this folders and files are under the mp3 folder. I would like to move just the mp3s to another folder but retain the subdir structure i have. So if... (4 Replies)
Discussion started by: jason7
4 Replies

4. Shell Programming and Scripting

want to move files in a dir into different directories based on the filename

I want to move the files in a dir to different dirs based on their file names. Ex: i have 4 different files with name - CTS_NONE_10476031_MRL_PFT20081215a.txt CTS_NONE_10633009_MRL_PFT20091020a.txt CTS_NONE_10345673_MRL_PFT20081215a.txt CTS_NONE_10872456_MRL_PFT20091020a.txt and the 1st... (4 Replies)
Discussion started by: Sriranga
4 Replies

5. Shell Programming and Scripting

Loop to move files in different directories

Hi, I have various log files in different paths. e.g. a/b/c/d/e/server.log a/b/c/d/f/server.log a/b/c/d/g/server.log a/b/c/h/e/server.log a/b/c/h/f/server.log a/b/c/h/g/server.log a/b/c/i/e/server.log a/b/c/i/e/server.log a/b/c/i/e/server.log and above these have an archive folder... (6 Replies)
Discussion started by: acc01
6 Replies

6. Shell Programming and Scripting

Recursively move directories along with files/specific files

I would like to transfer all files ending with .log from /tmp and to /tmp/archive (using find ) The directory structure looks like :- /tmp a.log b.log c.log /abcd d.log e.log When I tried the following command , it movies all the log files... (8 Replies)
Discussion started by: frintocf
8 Replies

7. Shell Programming and Scripting

Batch cycle and move files, please help

Hi guys, I'm not a great programmer but I do this project with a cool data and it has tons and tons of files which I need to sort before I can work with it. The problem I need to solve is to move all files that look like /X/Y/A_BC.xml to /X/B/A/Y/BC.xml So it involves cycling through... (7 Replies)
Discussion started by: drunkoctopus
7 Replies

8. UNIX for Dummies Questions & Answers

Move multipe files to corresponding directories

Hi, In a parent directory there are several files in the form IDENTIFIER1x IDENTIFIER1.yyy IDENTIFIER1_Z, etc IDENTIFIER2x IDENTIFIER2.yyy IDENTIFIER2_Z, etc IDENTIFIER3x IDENTIFIER3.yyy, IDENTIFIER3_Z, etcIn the same parent directory there are corresponding directories named... (7 Replies)
Discussion started by: spirospap
7 Replies

9. Shell Programming and Scripting

Need BASH Script Help to Move Files While Creating Directories

I've got this script to loop through all folders and move files that are more than 2 years old. I'm using the install command because it creates the necessary directories on the destination path and then I remove the source. I'd like to change the script to use the mv command since it is much... (4 Replies)
Discussion started by: consultant
4 Replies

10. UNIX for Beginners Questions & Answers

Move several files into specific directories with a loop

Hello, I'm a first time poster looking for help in scripting a task in my daily routine. I am new in unix but i am attracted to its use as a mac user. Bear with me... I have several files (20) that I manually drag via the mouse into several named directories over a network. I've used rsync... (14 Replies)
Discussion started by: SonnyClark
14 Replies
ffDiaporama(1)						      General Commands Manual						    ffDiaporama(1)

NAME
FFDIAPORAMA - Movie creator SYNTAX
ffDiaporama [-lang=] [-loglevel=] [Filename] DESCRIPTION
ffDiaporama is an application for assembling photos and videos especially for preserving holiday memories. It is inspired by presentation software such as Impress or Powerpoint. It can read nearly all image formats, a majority of cameras and camcorder video formats, and the most commonly used music formats. It includes 140 transitions and a device database for the generation of videos with more than 50 models of video viewing devices (including smartphones, tablets, and home cinema systems). ffDiaporama can manage several hundreds of slides. Every slide can contain several tens of shots and several tens of blocks. Every shot contains its own block settings. The application calculates all the shot transformations. OPTIONS
Filename Filename of the project file to load at application startup -lang= The language to be used. can take the following values: cz To use Czech de To use German en To use English es To use Spanish el To use Greek fr To use French it To use Italian nl To use Dutch pt To use Portuguese ru To use Russian -loglevel= Adjust the level of messages shown in the console: 1 Show Debug, Information, Warning and Error messages 2 Show Information, Warning and Error messages 3 Show Warning and Error messages 4 Show only Error messages NOTES
Messages appear only if you launched the program since a console. It is possible to redirect these messages in a log file by using >. AUTHOR
(C) 2010-2011 Dominique LEVRAY SEE ALSO
More information on WEB site : http://ffdiaporama.tuxfamily.org LOCAL ffDiaporama(1)
All times are GMT -4. The time now is 04:04 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy