-
Notifications
You must be signed in to change notification settings - Fork 0
/
import.sh
executable file
·37 lines (30 loc) · 1.12 KB
/
import.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/bash
# ID souboru, například eaf3f838 (nepovinný)
reMarkable_File_ID="${1:-}"
# Cesta k souborům
reMarkable_Path="/home/root/.local/share/remarkable/xochitl/"
# Funkce pro nalezení složky začínající na reMarkable_File_ID a bez tečky na konci
find_Directory() {
local search_path="$1"
local prefix="$2"
find "$search_path" -maxdepth 1 -type d -name "${prefix}*" ! -name '*.*' -print | head -n 1
}
# Hlavní část skriptu
if [ -z "$reMarkable_File_ID" ]; then
echo "Error: ID souboru není zadáno."
exit 1
else
directory=$(find_Directory "$reMarkable_Path" "$reMarkable_File_ID")
if [ -n "$directory" ]; then
# Odstranit bílé znaky (včetně nových řádků) z konce názvu složky
directory=$(echo "$directory" | tr -d '\n' | xargs)
# Extrakce názvu složky bez cesty a přidání "/"
folder_name=$(basename "$directory")
folder_name="${folder_name}/"
# Výstup názvu složky
echo "$folder_name"
else
echo "Error: Složka podle prefixu '$reMarkable_File_ID' nebyla nalezena."
exit 1
fi
fi