21
submitted 1 year ago by appel@whiskers.bim.boats to c/linux@lemmy.ml

Hi,

I'm looking for a package that will allow me to configure some rules for moving folders and then watch a folder and automatically move folders or files that match rules to a certain other directory. Does something like this exist?

The use case is that I have data being saved to a single directory by other devices, and then I would like to reorganize it based on the file or folder name.

Or anyone have any other ideas of how to do this?

top 7 comments
sorted by: hot top controversial new old
[-] nous@programming.dev 5 points 1 year ago

inotifywait or watchexec can both watch a directory for changes then execute anything you want.

[-] corsicanguppy@lemmy.ca 1 points 1 year ago

inotifywait or watchexec

Excellent suggestion.

[-] mikni@lemmy.friheter.com 4 points 1 year ago
[-] Sulinstajn@lemmy.ml 3 points 1 year ago* (last edited 1 year ago)

You can use find utility for that. I'm not at Linux machine right now, so maybe I can make mistake in commands, but something like this should work:

find /path/to/data/folder -name "type1name" -exec mv -t /path/to/dest/folder {} +

In this example, command find every file containing "type1name" in its name in folder /path/to/data/folder and move it into /path/to/dest/folder.

So if you have folder "~/data/all_data" containing files like "temperature_2023-06-30.csv", " temperature_2023-06-29.csv", "power_2023-06-30.csv" and "power_2023-06-29.csv", do:

mkdir ~/data/temperature

mkdir ~/data/power

find ~/data/all_data -name "temperature*" -exec mv -t ~/data/temperature {} +

find ~/data/all_data -name "power*" -exec mv -t ~/data/ {} +

More, you can tweak it into for examplee filtering according to current date and run that script every day.

[-] RandomLegend@lemmy.dbzer0.com 1 points 1 year ago

Best I can think of would be a shell script combined with Cron.

But I'd love see alternatives. Ideal with a gui imo

systemd-path is the cleanest and most portable solution. You define a path service to watch your directory for changes and trigger another service to perform certain actions then. It uses inotify.

https://man.archlinux.org/man/systemd.path.5.en

Here is a full example from our currently so beloved redhat: https://www.redhat.com/sysadmin/introduction-path-units

[-] infinitegoose@chiral.stream 1 points 1 year ago

If you don't find the application you're looking for maybe you can write a bash script that runs on a Cron job. It's possible if you're just talking about file/folder names

load more comments
view more: next ›
this post was submitted on 30 Jun 2023
21 points (95.7% liked)

Linux

46611 readers
1082 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS