Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Post History

66%
+2 −0
Q&A Can rsync handle moves and renames?

Suppose I have a directory structure like ├── src │   ├── folder_a │   │   ├── file_w │   │   └── file_x │   ├── folder_b │   │   ├── file_y │   │   └── file_z and I back it up using rsyn...

1 answer  ·  posted 4mo ago by Karl Knechtel‭  ·  edited 3mo ago by Karl Knechtel‭

Question filesystem rsync
#3: Post edited by user avatar Karl Knechtel‭ · 2024-02-01T12:34:12Z (3 months ago)
Improve fake `tree` output
  • Suppose I have a directory structure like
  • ```
  • ├── src
  • │   ├── folder_a
  • │   │   ├── file_w
  • │   │   ── file_x
  • │   ├── folder_b
  • │   │   ├── file_y
  • │   │   ── file_z
  • ```
  • and I back it up using `rsync`:
  • ```
  • $ rsync -r /path/to/src/ /path/to/dst/
  • ```
  • Later, I reorganize the contents of `src`, for example:
  • ```
  • ├── src
  • │   ├── folder_c
  • │   │   ├── file_w
  • │   │   ── file_y
  • │   ├── folder_d
  • │   │   ├── file_x
  • │   │   ── file_z
  • ```
  • Each file with a given name has not changed; but they don't have the same hierarchical relationship (i.e., files that used to be siblings might not be any more), and the names of their containing folders may have changed.
  • Can `rsync` detect that the `dst` folder contains the same files, and avoid copying files (instead only moving files within `dst` and renaming folders)? What options are useful to make this as smooth as possible?
  • Suppose I have a directory structure like
  • ```
  • ├── src
  • │   ├── folder_a
  • │   │   ├── file_w
  • │   │   ── file_x
  • │   ├── folder_b
  • │   │   ├── file_y
  • │   │   ── file_z
  • ```
  • and I back it up using `rsync`:
  • ```
  • $ rsync -r /path/to/src/ /path/to/dst/
  • ```
  • Later, I reorganize the contents of `src`, for example:
  • ```
  • ├── src
  • │   ├── folder_c
  • │   │   ├── file_w
  • │   │   ── file_y
  • │   ├── folder_d
  • │   │   ├── file_x
  • │   │   ── file_z
  • ```
  • Each file with a given name has not changed; but they don't have the same hierarchical relationship (i.e., files that used to be siblings might not be any more), and the names of their containing folders may have changed.
  • Can `rsync` detect that the `dst` folder contains the same files, and avoid copying files (instead only moving files within `dst` and renaming folders)? What options are useful to make this as smooth as possible?
#2: Post edited by user avatar matthewsnyder‭ · 2024-01-30T08:03:58Z (4 months ago)
  • Can rsync handle file reorganization efficiently?
  • Can rsync handle moves and renames?
Suppose I have a directory structure like

```
├── src
│   ├── folder_a
│   │   ├── file_w
│   │   ├── file_x
│   ├── folder_b
│   │   ├── file_y
│   │   ├── file_z
```
and I back it up using `rsync`:
```
$ rsync -r /path/to/src/ /path/to/dst/
```
Later, I reorganize the contents of `src`, for example:
```
├── src
│   ├── folder_c
│   │   ├── file_w
│   │   ├── file_y
│   ├── folder_d
│   │   ├── file_x
│   │   ├── file_z
```
Each file with a given name has not changed; but they don't have the same hierarchical relationship (i.e., files that used to be siblings might not be any more), and the names of their containing folders may have changed.

Can `rsync` detect that the `dst` folder contains the same files, and avoid copying files (instead only moving files within `dst` and renaming folders)? What options are useful to make this as smooth as possible?
#1: Initial revision by user avatar Karl Knechtel‭ · 2024-01-25T00:58:52Z (4 months ago)
Can rsync handle file reorganization efficiently?
Suppose I have a directory structure like

```
├── src
│   ├── folder_a
│   │   ├── file_w
│   │   ├── file_x
│   ├── folder_b
│   │   ├── file_y
│   │   ├── file_z
```
and I back it up using `rsync`:
```
$ rsync -r /path/to/src/ /path/to/dst/
```
Later, I reorganize the contents of `src`, for example:
```
├── src
│   ├── folder_c
│   │   ├── file_w
│   │   ├── file_y
│   ├── folder_d
│   │   ├── file_x
│   │   ├── file_z
```
Each file with a given name has not changed; but they don't have the same hierarchical relationship (i.e., files that used to be siblings might not be any more), and the names of their containing folders may have changed.

Can `rsync` detect that the `dst` folder contains the same files, and avoid copying files (instead only moving files within `dst` and renaming folders)? What options are useful to make this as smooth as possible?