You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
213 B
Bash
19 lines
213 B
Bash
4 years ago
|
#!/usr/bin/env bash
|
||
4 years ago
|
#ft=bash
|
||
12 years ago
|
|
||
|
function min-jpg {
|
||
2 years ago
|
min_jpg "${@}"
|
||
12 years ago
|
}
|
||
|
|
||
|
function min-png {
|
||
2 years ago
|
min_png "${@}"
|
||
12 years ago
|
}
|
||
|
|
||
|
function get-create-date {
|
||
2 years ago
|
get_create_date "${@}"
|
||
12 years ago
|
}
|
||
|
|
||
|
function add-date-prefix {
|
||
2 years ago
|
add_date_prefix "${@}"
|
||
12 years ago
|
}
|