在 UNIX 中,我读到将 shell 脚本移动到 /usr/local/bin 将允许您通过简单地键入“[scriptname].sh”并按 Enter 键从任何位置执行脚本。
我已经移动了一个具有普通用户和 root 权限的脚本,但我无法运行它。
剧本:
#! bin/bash
echo "The current date and time is:"
date
echo "The total system uptime is"
uptime
echo "The users currently logged in are:"
who
echo "The current user is:"
who -m
exit 0
这就是我尝试移动然后运行脚本时发生的情况:
[myusername@VDDK13C-6DDE885 ~]$ sudo mv sysinfo.sh /usr/local/bin
[myusername@VDDK13C-6DDE885 ~]$ sysinfo.sh
bash: sysinfo.sh: command not found