This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/bin/bash
# 当 a.txt 存在时,执行 echo "good" >> a.txt,否则执行 echo "bad" >> a.txt
test -e a.txt && echo "good" >> a.txt || echo "bad" >> a.txt