#!/bin/zsh # Override the gallery-dl command to change the directory to ~/datasets # before executing the original command function gallery-dl() { # Change to the ~/datasets directory cd ~/datasets # Execute the original gallery-dl command with all passed arguments command gallery-dl "$@" }