I have a directory having 100 sub directories each one having 100 files. Every day number of files in each sub directory increases by one. I want to write a script in Linux to copy all 100 sub directories in another location each having only one latest file. How this can be done?
Copy latest modified file from all subdirectories to a new directory having same sub directory structure
1k Views Asked by Prashant S. At
2
There are 2 best solutions below
2
AGBhat
On
From your current directory (which is having 100 sub directories) you can run script as:
for f in `find ./* -maxdepth 0 -type d`
do
if [ $f != "./directory_to_copy" ]
then
cp $f/`ls -t $f | head -1` ./directory_to_copy
fi
done
And if your out directory is not in current directory you can skip the If statement and you can specify relative path or absolute path to the directory where you need to store with name in cp statement as:
cp $f/`ls -t $f | head -1` path_to_directory/name_of_directory
Related Questions in LINUX
- How do I recursively find and replace only in files named index.php on Linux webserver?
- passing text with \n as one argument in shell
- kernel module does not print packet info
- How to send ESC/POS commands to thermal printer in Linux
- (x64 Nasm) Writeline function on Linux
- How do I set the Hive user to something different than the Spark user from within a Spark program?
- Default priority of thread with SCHED_FIFO
- Calling a python function with options from shell script
- How to split a directory into parts without compressing or archiving?
- Cross compile simple standard C program on Linux for Mac
- How to offload NAPI poll function to workqueue
- python netifaces - How to get currently used network interface
- Unexpected output from function
- mingw-64 conflicting declarations when cross-compiling
- Different behavior of async with Visual Studio 2013(Windows8.1) and GCC 4.9(Ubuntu14.10)
Related Questions in BASH
- How do I recursively find and replace only in files named index.php on Linux webserver?
- Delete the extra space after special character in all the lines of text file
- Calling a python function with options from shell script
- bc: prevent "divide by zero" runtime error on multiple operations
- Multiple commands with find and xargs, also accounting for special characters
- How to split a directory into parts without compressing or archiving?
- concat a lot of files to stdout
- Honoring quotes while reading shell arguments from a file
- No laravel sync folders in homestead vagrant on windows
- Grouping commands in curly braces and piping does not preserve variable
- SWI Prolog pass a goal with non-zero arity through the command line arguments
- Evaluating condition of if statement in awk using a second file
- How to customise bash completion to pick only a custom set of commands?
- Bash regular expression execution hangs on long expressions
- Bitwise OR in bash arguments with square brackets
Related Questions in RSYNC
- PuPHPet Vagrant configuration doesn't sync with the good folder
- Trying to create a Bath file that will copy a specific directory path (no lower) and zip the directories in that path
- rsync not working for remote copy?
- Deployment over GPRS to embedded devices
- php exec() rsync ssh to remote server not working
- Why rsync fails with jenkins
- gulp deploy rsync error // missing module lodash
- How to exclude hidden file ".htaccess" in rsync?
- rsync in a FreeBSD jail: failed to set times: Operation not permitted
- rsync exclude folder contents but still create folder
- Upgrading rsync on OS X using Homebrew
- QProcess doesn't show any output when it runs rsync
- Ignore synced folder files/directories with NFS as sync system for Vagrant
- How do you rsync build files from Gitlab CI to another server
- Reading rsync source from file results in improper parsing of file names with white space
Related Questions in CP
- Bahs - How To Copy Files From A Directory To Multiple Directories?
- C implementation of cp
- How do I get the full path of a copied file?
- Cygwin or Gnuwin - Find .txt files named* copy & paste to specific directory
- Why I get the "omitting directory" error using globbing in cp command?
- Using gzip to compress files to transfer with aws command
- Recursively copy contents of directory to all target directories
- UNIX/ copy directory to new directory
- use cp to copy and change name of a file reading from a filelist.file
- recursively move, rename and zip files
- SEEK_HOLE always point to the end of file
- how to use cp to copy a file to to a file named the same as one directory name in a directory?
- How to escape characters like colon : and comma , in for loop?
- Intro to Linux cli; output redirection
- `cp` vs `rsync` vs something faster
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You can modify if block as:
and if out directory is not inside current directory: