ll: command not found
#!/bin/bash
ll .venv
bash entrypoint.sh执行出现错误
entrypoint.sh: line 2: ll: command not found
而使用source entrypoint.sh却没问题
原因:权限问题
#!/bin/bash
ll .venv
bash entrypoint.sh执行出现错误
entrypoint.sh: line 2: ll: command not found
而使用source entrypoint.sh却没问题
原因:权限问题