mirror of
https://gh.wpcy.net/https://github.com/szepeviktor/wordpress-website-lifecycle.git
synced 2026-04-24 05:09:10 +08:00
9 lines
186 B
Bash
Executable file
9 lines
186 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# Find WordPress media with non-slug filename.
|
|
#
|
|
# VERSION :0.1.0
|
|
|
|
set -e
|
|
|
|
find "$(wp eval 'echo wp_upload_dir()["basedir"];')" -type f -regex '.*[^/0-9A-Za-z._-].*'
|