File size: 303 Bytes
8db8d20 |
1 2 3 4 5 6 7 8 9 10 11 |
# 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 "$@"
}
|