Moving directories


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Moving directories
# 1  
Old 12-03-2013
Moving directories

Hi
Can I ask a (probably) easy question?

I have a range of files in nested directories:
Code:
subj_01/session_1/AAA/safe.txt
subj_01/session_1/AAA/sample.txt
subj_01/session_1/DDD/results.txt

This is repeated for three sessions for each of subj_{01..026}

Is there a way of copying the above files (and directory structure) from one location to another

There are multiple other files/directories in each session folder so previously have copied over each subject's data then laboriously deleted the files/folders I dont need in the new location

Using Bash unix

Thanks!

Last edited by vbe; 12-03-2013 at 12:52 PM..
# 2  
Old 12-03-2013
Do a man on the pax utility and pax -rw /fromdir /todir will move the dir structure from one location to another
# 3  
Old 12-03-2013
Thanks
Looks good

How would I move
Code:
subj_1/session_1/AAA/sample.txt
subj_1/session_1/AAA/test.txt

from
~/home/study1
to
~/data/study1

Last edited by vbe; 12-03-2013 at 12:51 PM..
# 4  
Old 12-03-2013
Quote:
Originally Posted by shamrock
Do a man on the pax utility and pax -rw /fromdir /todir will move the dir structure from one location to another
Actually, pax -rw will copy; not move files.
# 5  
Old 12-03-2013
Is this homework?
# 6  
Old 12-03-2013
Am touched you think I am young enough to be doing homework!
I am a 34 year old PhD student. Trying to do some image analysis and find shortcuts so I can get home to see my family before midnight tonight!
Thanks!
# 7  
Old 12-03-2013
Quote:
Originally Posted by montywaite
Thanks
Looks good

How would I move
Code:
subj_1/session_1/AAA/sample.txt
subj_1/session_1/AAA/test.txt

from
~/home/study1
to
~/data/study1
Does ~/data/study1/subj_1 exist?

Are there any files in and under ~/home/study1/subj_1 that you don't want to move to ~/data/study1?

If you want to move (not copy) the files, and the answer to both questions above is "no", try:
Code:
mv ~/home/study1/subj_1 ~/data/study1/

 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Archiving and moving files into directories, creating directories, etc.

how can i move "dataName".sql.gz into a folder called 'database' and then move "$fileName".tar.gz * .htaccess into a folder called 'www' with the entire gzipped file being "$fileName".tar.gz? Is this doable or overly complex. so mydemo--2015-03-23-1500.tar.gz > database -... (5 Replies)
Discussion started by: wyclef
5 Replies

2. Shell Programming and Scripting

Using Expect and scp. Not moving directories

An Expect script using scp to copy directories is not moving the subdirectories as wanted. The directory structure is: computerA (user 'test') /home/test/parentDir/subdir1 /home/test/parentDir/subdir2 and I want them copied to computerB (user 'archive') /home/archive/subdir1... (1 Reply)
Discussion started by: nohj ordpl
1 Replies

3. UNIX for Dummies Questions & Answers

Selective moving of directories

Hi there, I'm fairly new to Unix and have been getting my head round the command line for a FreeNAS install that I just did. I need to move a whole bunch of directories from one location to another and need a bit of help! I understand the basics of the 'mv' command but am not sure how to specify... (2 Replies)
Discussion started by: randomgooner
2 Replies

4. Shell Programming and Scripting

moving files to different directories

im trying to move media and other files which are in a specified directory to another directory and create another one if it does not exits(where the files will go),them also create a directory will the remaining files with different extensions will go.my first problem is that my script is not... (8 Replies)
Discussion started by: elginmulizwa
8 Replies

5. Shell Programming and Scripting

Moving files from several directories into parent

I am fairly new to bash(but am proficient in C++), and have only completed a few simple scripts. This is my first script that I actually need to do a serious task. All of my audiobooks are stored in traditional MP3 format: Music/Artist/Album/*.mp3 (which in this case is... (0 Replies)
Discussion started by: gamendorf
0 Replies

6. Shell Programming and Scripting

moving files between directories !!

hi i have a list of directory in a text file with all directories name in a column.(this is not exactly a file but i need to do a grep and awk on a file to find that list) i have the source folders like abchome/abc/xxyz/nl_xxabc/mm// v01 ... (4 Replies)
Discussion started by: debu000
4 Replies

7. UNIX for Dummies Questions & Answers

Moving Directories Based on Modified date

Hi, How can I move directories (and all sub directories/files) from one directory to another based on the modified date of the directory? Currently the existing structure looks like this: /public_html/media/videos/tmb/34947/image1.jpg /public_html/media/videos/tmb/34947/image2.jpg ... (0 Replies)
Discussion started by: lbargers
0 Replies

8. UNIX for Dummies Questions & Answers

Moving files between directories using SFTP

I want to connect to an SFTP server, GET some files, then move those files to a different directory on the SFTP server so I don't try to GET them next time. But there doesn't seem to be a way to move files between directories on the remote server from SFTP. I missing something obvious? And if... (6 Replies)
Discussion started by: cjhancock
6 Replies

9. Solaris

Tar and moving directories

I'm redoing my file system partitions on a Sunblade 100. The system came with a 999mb root and slice 6 with 35GB. I redid the file system by creating separate /opt1, /usr1, /var1, and a /data on different partitions (slice 3, 4, 5 and 7). I need a command to tar my opt, var, opt, usr that's under... (2 Replies)
Discussion started by: stocksj
2 Replies

10. Shell Programming and Scripting

moving directories to new directories on multiple servers

Hi - I am new to unix scripts...I need to move several directories on multiple servers to new directories. (0 Replies)
Discussion started by: mackdaddy07
0 Replies
Login or Register to Ask a Question