Create a gowebdav wrapper script
masterTo simplify usage and securely manage credentials (e.g., using pass), you can create a shell wrapper script. This allows you to run commands against a specific server without manually providing the URL, user, or password every time.
Example wrapper content:
#!/bin/sh
ROOT="https://my.dav.server/" \
USER="foo" \
PASSWORD="$(pass dav/foo@my.dav.server)" \
gowebdav $@After creating the file, make it executable with chmod a+x <filename>.