Преглед изворни кода

:memo: Add command to manipulate Google Pixel names

DricomDragon пре 1 година
родитељ
комит
f2f07caad8
1 измењених фајлова са 11 додато и 1 уклоњено
  1. 11 1
      Guides/shell.md

+ 11 - 1
Guides/shell.md

@@ -65,4 +65,14 @@ rename 's/(\w+)_(\d{8}_.*)\./$2_IMG_$1./' *.jpg
 
 ```sh
 rename 's/(\w+)_(\w{3})_(\d{8}_.*)\./$3_$2_$1/\.' *
-```
+```
+
+### Fix Google Pixel length
+
+```sh
+rename 's/(^PXL_.*_[0-9]{6}).*\.jpg$/$1_IMG_person.jpg/' *.jpg
+rename 's/(^PXL_.*_[0-9]{6}).*\.mp4$/$1_IMG_person.mp4/' *.mp4
+rename.ul -- 'PXL_' '' *
+```
+
+Take care, timestamp seems to be in UTC.