Unison: Ignore files with Regex doesn't work

417 Views Asked by At

I tried to ignore some files that end with ".NUMBERS" like .133443. I tried this Regex but it still copies the files:

unison -batch -owner -group -times -ignore "Regex ^*\.[0-9]+$" /hadoop/bigdata/giin/data ssh://cnp31ginhortonen1.giin.recouv//hadoop/bigdata/giin/data -prefer newer`

Source :

[root@cnp31ginhortonen1 .unison]# tree /hadoop/bigdata/giin/data/ 

/hadoop/bigdata/giin/data/
├── aefd.csv
├── aefd.log
├── aefd.xml
├── subdir
│   ├── aefd.csv
│   ├── aefd.log
│   ├── aefd.xml
│   └── TB5E.B01.117.210409074
├── TB5E.B01.117.10409074
└── TB5E.B01.117.210409074
0

There are 0 best solutions below