mirror of
https://github.com/DaoCloud/public-image-mirror.git
synced 2025-08-06 04:20:14 +08:00
8 lines
109 B
Bash
Executable File
8 lines
109 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
cp $1 $1.bak
|
|
|
|
$(dirname "${BASH_SOURCE}")/fmt.sh $1.bak
|
|
|
|
diff -c $1 $1.bak && rm $1.bak
|