#!/bin/sed -nf # pathList.sed - List of shares paths from smb.conf or rsyncd.conf like files # (C) 2025 Felix Hauri - felix@f-hauri.ch # Version: 0.0.01 -- Last-Update: 2025-05-16 08:25:55 CEST # Licensed under terms of GPL v3. www.gnu.org /^[[:space:]]*\[[[:space:]]*\(.*\)[[:space:]]*\].*/{ s//\1/; h; }; /^[[:space:]]*path[[:space:]]*=[[:space:]]*/{ s///; G; s/\(.*\)\n\(.*\)/\2 \t\1/; s/^\(.\{24\}\) *\t/\1\t/; p; }