我有一个shell脚本,我想在不使用“sh”或“bash”命令的情况下运行。例如:

而不是:sh script.sh

我想使用:script.sh

我该怎么做呢?

P.S. (i)我不太使用shell脚本,我试着阅读关于别名的内容,但我不知道如何使用它们。

(ii)我还读了关于将脚本链接到PATH变量中的另一个文件。我正在使用我的大学服务器,我没有权限在这些位置创建文件。


当前回答

通过使用文件的属性使脚本文件成为可执行文件 在~/.bashrc中为可执行文件创建别名。别名<别名> = <完整脚本文件路径>' 刷新用户会话以应用它。源~ / . bashrc

其他回答

只需确保它是可执行的,使用chmod +x。默认情况下,当前目录不在您的PATH上,因此您需要以./script.sh的形式执行它,或者以其他方式引用它。或者,如果您确实只需要script.sh,则需要将其添加到PATH中。(您可能没有权限修改系统路径,但几乎可以修改您自己当前环境的path。)这还假定脚本以#!/bin/sh开头。

你也可以使用别名,它与shell脚本无关,只是与shell相关,简单如下:

alias script.sh='sh script.sh'

这将允许您只使用script.sh(字面上-这将不适用于任何其他*.sh文件)而不是sh script.sh。

只是:

/path/to/file/my_script.sh

在本例中,文件名为myShell

首先,我们需要创建这个文件,我们可以输入以下内容:

sudo nano myShell

注意到没有。sh扩展名了吗? 这是因为当我们从终端运行它时,我们只需要键入myShell来运行我们的命令!

现在,在nano的顶部行必须是#!/bin/bash,然后在继续之前留下新行。

为了演示,我将添加一个基本的Hello World!响应

所以,我输入以下内容:

echo Hello World!

之后,我的例子应该是这样的:

#!/bin/bash
echo Hello World!

现在保存文件,然后运行这个命令:

chmod +x myShell

现在我们已经使文件可执行,我们可以使用以下命令将其移动到/usr/bin/:

sudo cp myShell /usr/bin/

恭喜!我们的命令现在完成了!在终端中,我们可以输入myShell,它应该说Hello World!

使任何文件作为可执行文件


假设你有一个名为migrate_linux_amd64的可执行文件你想要运行这个文件,比如"migrate"

首先从文件位置测试可执行文件:

[oracle@localhost]$ ./migrate.linux-amd64 
Usage: migrate OPTIONS COMMAND [arg...]
       migrate [ -version | -help ]

Options:
  -source          Location of the migrations (driver://url)
  -path            Shorthand for -source=file://path 
  -database        Run migrations against this database (driver://url)
  -prefetch N      Number of migrations to load in advance before executing (default 10)
  -lock-timeout N  Allow N seconds to acquire database lock (default 15)
  -verbose         Print verbose logging
  -version         Print version
  -help            Print usage

Commands:
  goto V       Migrate to version V
  up [N]       Apply all or N up migrations
  down [N]     Apply all or N down migrations
  drop         Drop everyting inside database
  force V      Set version V but don't run migration (ignores dirty state)
  version      Print current migration version

确保您对该文件具有执行权限 -rwxr-xr-x 1 oracle oinstall 7473971 May 18 2017 migration .linux-amd64 . zip 否= >执行chmod +x migration .linux-amd64 然后将文件复制到/usr/local/bin。该目录为root目录,请使用sudo或切换到root目录执行以下操作

sudo cp migrate.linux-amd64 /usr/local/bin
sudo chown oracle:oracle /user/local/bin/migrate.linux.amd64

然后创建一个如下所示的符号链接

sudo ln /usr/local/bin/migrate.linux.amd64 /usr/local/bin/migrate
sudo chown oracle:oracle /usr/local/bin/migrate

最后将/usr/local/bin添加到您的路径或用户配置文件中

export PATH = $PATH:/usr/local/bin

然后运行命令"migrate"

[oracle@localhost]$ migrate
Usage: migrate OPTIONS COMMAND [arg...]
       migrate [ -version | -help ]

Options:
  -source          Location of the migrations (driver://url)
  -path            Shorthand for -source=file://path 
  -database        Run migrations against this database (driver://url)
  -prefetch N      Number of migrations to load in advance before executing (default 10)
  -lock-timeout N  Allow N seconds to acquire database lock (default 15)
  -verbose         Print verbose logging
  -version         Print version
  -help            Print usage

Commands:
  goto V       Migrate to version V
  up [N]       Apply all or N up migrations
  down [N]     Apply all or N down migrations
  drop         Drop everyting inside database
  force V      Set version V but don't run migration (ignores dirty state)
  version      Print current migration version

通过使用文件的属性使脚本文件成为可执行文件 在~/.bashrc中为可执行文件创建别名。别名<别名> = <完整脚本文件路径>' 刷新用户会话以应用它。源~ / . bashrc