shell脚本提示"ll: command not found"

shell脚本test.sh代码:

#!/bin/sh

# 查看test目录下的文件列表
ll /test

执行报错:

test.sh: line 3: ll: command not found

解决方法:

#!/bin/sh

# 查看test目录下的文件列表
ls -l /test

标签: shell

添加新评论