Script to copy data from one directory to another and at the same time remove copied files after 30 days.

It is typical that we need to schedule (cron) operations on files for archiving or pre/post – processing purpose. Below script is and example, can be use to simplify with customization of your example:

#!/bin/bash

source_dir="11"
dest_dir="22"
log_file="log.txt"
now=$(date +%s)

echo "$now START Files to move from $source_dir to $dest_dir" >> $log_file
files_to_move=$(find $source_dir -type f)
echo $files_to_move >> $log_file
xargs -I{} -n 1 mv {} "$dest_dir" <<< $files_to_move
echo "$now END  move file" >> $log_file

echo "$now START Remove files older than 30 days" >> $log_file
remove_files=$(find $dest_dir -type f -mtime +30)
echo $remove_files >> $log_file
xargs -I{} rm {} <<< "$remove_files"
echo "$now END -- Remove files" >> $log_file
No Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Linux
podcast

All podcast applications I have tested were quite OK(ish) – but I have always struggled with organizing podcasts, creating playlists, etc. It has always been challenging. Therefore, for me, it is more convenient to download podcasts as MP3s and manage them myself (in VLC, for example). There are many ways to do that, but my favorite …

Linux
jellyfin configuration in lxc container

Jellyfin is extremely useful software providing home streaming system. I am using it since a while for streaming my old ripped DVD, which I love to watch again and again. Jellyfin is opensource, cross platform as a server and as a client, including client for android and iOS. It is …

Linux
Various helpful Linux commands for file manipulations

Change file name for all files that contains “[any text]” substring to the same name without that.