toolkit / zsh /gallery-dl.zsh
k4d3's picture
start ocr, gallery-dl override
8db8d20
raw
history blame contribute delete
303 Bytes
# 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 "$@"
}