qiniu / reviewbot

Empower Your Code Quality with Self-Hosted Automated Analysis and Review
https://reviewbot-x.netlify.app
Apache License 2.0
35 stars 15 forks source link

warning: `XXXX` appears unused. Verify use (or export if used externally). [SC2034] #440

Open wwcchh0123 opened 2 weeks ago

wwcchh0123 commented 2 weeks ago

lint 解释

错误用例

定义一个未使用的变量

my_var="Hello, World!"

echo "脚本执行完毕"


### 正确用例
- 用法一:使用变量
```bash
#!/bin/bash

my_var="Hello, World!"

# 使用变量
echo "$my_var"

my_var="Hello, World!" export my_var # 导出变量以供子进程使用

在子进程中使用

bash -c 'echo "$my_var"'



- 用法三:如果未使用则删除变量,避免代码冗余