常用shell命令
#!/usr/bin/env bash(推荐)#!/bin/bash# shell 注释# author: testecho "Hello,World!"echo "hello, \"fay\""name=testecho "hello,\"${name}\""echo "YES
NO" echo -e "YES
NO"# \c 不换行echo -e "YES\c"echo "NO"#重定向echo "test" > test.txt#输出执行结果echo
NO" echo -e "YES
NO"# \c 不换行echo -e "YES\c"echo "NO"#重定向echo "test" > test.txt#输出执行结果echo






