toolkit / zsh /gallery-dl.zsh
k4d3's picture
update every stupid script
c2cc76d
raw
history blame
315 Bytes
#!/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 "$@"
}