netdzb 当前离线
上尉
Batcher 当前离线
管理员
#!/bin/bash for FILE in *.jpg; do if ! [[ "$FILE" =~ "-" ]]; then rm -f "$FILE" fi done复制代码
TOP