diff --git a/_posts/Linux/other/cron.md b/_posts/Linux/other/cron.md index 1bbe302..3588058 100644 --- a/_posts/Linux/other/cron.md +++ b/_posts/Linux/other/cron.md @@ -14,7 +14,7 @@ Cron 表达式由空格分隔的五个字段组成,分别表示分钟、小时 minute hour day month week command 顺序:分 时 日 月 周 ``` -> + >以下是每个字段的取值范围和特殊字符的说明: 分钟字段:取值范围是 0-59。 diff --git a/_posts/git/questions.md b/_posts/git/questions.md index c26691d..0331d7b 100644 --- a/_posts/git/questions.md +++ b/_posts/git/questions.md @@ -14,4 +14,4 @@ tags: Git ```sh git pull -``` \ No newline at end of file +``` diff --git a/_posts/数据库/Mysql/batch_drop_table.md b/_posts/数据库/Mysql/batch_drop_table.md index 13491e8..c81752c 100644 --- a/_posts/数据库/Mysql/batch_drop_table.md +++ b/_posts/数据库/Mysql/batch_drop_table.md @@ -23,7 +23,7 @@ EXECUTE stmt; DEALLOCATE PREPARE stmt; ``` -> + 上述代码中的 `database_name` 替换为要操作的数据库的名称,`regex_pattern` 替换为要匹配的表名的正则表达式模式。