shell脚本提示 ll:command not found 发表于 2023-03-06 分类于 Linux 阅读次数: shell脚本test.sh代码: 1234#!/bin/sh# 查看test目录下的文件列表ll /test 执行报错: 1test.sh: line 3: ll: command not found 解决方法: 1234#!/bin/sh# 查看test目录下的文件列表ls -l /test