瀏覽代碼

:art: Add tips to rename pictures for ordering

DricomDragon 2 年之前
父節點
當前提交
41cc4e136b
共有 1 個文件被更改,包括 44 次插入0 次删除
  1. 44 0
      Guides/shell.md

+ 44 - 0
Guides/shell.md

@@ -22,3 +22,47 @@ sudo tar --create --gzip --file bck_var_log.tgz --verbose /var/log
 systemctl list-units --state=failed
 ```
 
+## Merge photos from others
+
+Let's assume different people took pictures with format like `IMG_YYYYMMDD_hhmmss[suffixe].jpg` e.g. `IMG_20220713_210605__01.jpg`.
+
+If you want to mix photos while keeping chronological order in viewers, you have to rename them in order to sort them alphabetically by date.
+
+Use the command below to make every file start by `YYYYMMDD_hhmmss`.
+
+On Ubuntu, you have two different utilities : `rename.ul` making simple replacements, and `rename` working with regex.
+
+### Add a name suffixe
+
+`p1.jpg` -> `p1_suffixe.jpg`
+
+```sh
+rename.ul '.jpg' '_suffixe.jpg' *
+```
+
+### Replace strange chars
+
+`20220711_181620~2.jpg` -> `20220711_181620_2.jpg`
+
+```sh
+rename.ul '~' '_' *.jpg
+rename.ul ')' '' *.jpg
+rename.ul '(' '_' *.jpg
+```
+
+### Device to end
+
+`CANON_20220711_181620.jpg` -> `20220711_181620_IMG_CANON.jpg`
+
+```sh
+rename 's/(\w+)_(\d{8}_.*)\./$2_IMG_$1./' *.jpg
+```
+
+### Device and type to end
+
+`CANON_IMG_20220713_210605__01.jpg` -> `20220713_210605__01_IMG_CANON`
+`SAM_VID_20220713_210605__01.mp4` -> `20220713_210605__01_VID_SAM.mp4`
+
+```sh
+rename 's/(\w+)_(\w{3})_(\d{8}_.*)\./$3_$2_$1/\.' *
+```