linux 中如何执行脚本?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux 中如何执行脚本?相关的知识,希望对你有一定的参考价值。
"首先脚本需要有执行权限:chmod u x file.sh;执行脚本有三种方法:1. ./file.sh:特点:开启bash子进程来执行,也就是开启额外的进程来进行,不影响原进程的变量、配置等2. bash file.sh特点:和./file.sh相同3. source file.sh 或者 . file.sh 特点:在原bash进程中执行脚本。第三种方法主要用于在脚本中切换用户su、切换目录cd等命令。source 和 . 命令是相同的。你可以搜索 source
补充,如何查看脚本运行是否开启了bash子进程vim file.sh写入#!/bin/bash;#echo $$命令会输出bash进程ID;echo $$;保存并赋予可执行权限chmod u x file.sh;在你的shell中输入,echo $$ 屏幕输出4176;./file.sh 屏幕输出3600;bash file.sh 屏幕输出3984;source file.sh 屏幕输出4176 和 你直接在shell中输出的一样,说明是在同一个bash进程,另外你是感兴趣的话可以看下刘遄老师写的《Linux就该这么学》作为入门的书籍,觉得不错的话采纳下哦
" 参考技术A ash shell 脚本的方法有多种,现在作个小结。假设我们编写好的shell脚本的文件名为hello.sh,文件位置在/data/shell目录中并已有执行权限。
方法一:切换到shell脚本所在的目录(此时,称为工作目录)执行shell脚本:
cd /data/shell
./hello.sh
./的意思是说在当前的工作目录下执行hello.sh。如果不加上./,bash可能会响应找到不到hello.sh的错误信息。因为目前的工作目录(/data/shell)可能不在执行程序默认的搜索路径之列,也就是说,不在环境变量PASH的内容之中。查看PATH的内容可用 echo $PASH 命令。现在的/data/shell就不在环境变量PASH中的,所以必须加上./才可执行。
方法二:以绝对路径的方式去执行bash shell脚本:
/data/shell/hello.sh
方法三:直接使用bash 或sh 来执行bash shell脚本:
cd /data/shell
bash hello.sh
或
cd /data/shell
sh hello.sh
注意,若是以方法三的方式来执行,那么,可以不必事先设定shell的执行权限,甚至都不用写shell文件中的第一行(指定bash路径)。因为方法三是将hello.sh作为参数传给sh(bash)命令来执行的。这时不是hello.sh自己来执行,而是被人家调用执行,所以不要执行权限。那么不用指定bash路径自然也好理解了啊,呵呵……。
方法四:在当前的shell环境中执行bash shell脚本:
cd /data/shell
. hello.sh
或
cd /data/shell
source hello.sh
前三种方法执行shell脚本时都是在当前shell(称为父shell)开启一个子shell环境,此shell脚本就在这个子shell环境中执行。shell脚本执行完后子shell环境随即关闭,然后又回到父shell中。而方法四则是在当前shell中执行的。
如何在Linux中执行Shell脚本?
我想写一个Java代码,可以在Windows和Linux机器上使用,为Ethereum合约生成字节码。
我不熟悉shell脚本和linux,从我在互联网上读到的东西,我将能够通过bash执行以下批处理文件......但不幸的是,我得到了它不工作。我的代码是针对windows和linux的,并且为windows生成一个批处理文件,为linux生成一个shell文件,这到底是什么问题?
这段代码在linux下应该怎么用?在windows下,这段代码工作得很好。
String delim="";
String scriptName="";
String cmd="";
if (Linux)
delim = "/";
scriptName="compile.sh";
cmd = "bash /c compile.sh";
else
delim = "\\";
scriptName="compile.bat";
cmd = "cmd /c compile.bat";
String UUID = __SolidityFile.getValue(getContext(),"__UUID__");
String firstFolder = UUID.substring(0, 2);
String secondFolder = UUID.substring(2, 4);
String secondFolderLocation=com.mendix.core.Core.getConfiguration().getBasePath()+delim+"data"+delim+"files"+delim + firstFolder+ delim + secondFolder ;
String fileLocation=secondFolderLocation+ delim + UUID;
Core.getLogger("Solidity").info(fileLocation);
String solc =com.mendix.core.Core.getConfiguration().getResourcesPath()+delim+"node"+delim+"node_modules"+delim+"solc"+delim+"solcjs";
String node=com.mendix.core.Core.getConfiguration().getResourcesPath()+delim+"node.exe";
try
// Block of code to try
final File file = new File(secondFolderLocation+delim+scriptName);
file.createNewFile();
PrintWriter writer = new PrintWriter(file, "UTF-8");
writer.println("cd "+secondFolderLocation);
writer.println(node+" "+ solc +" " +UUID +" --bin");
writer.println("exit");
writer.close();
Process p = Runtime.getRuntime().exec(cmd, null, new File(secondFolderLocation));
p.waitFor();
//file.delete();
String byteCodeFile = "";
String byteFileType = ByteCodeType.getCaption();
switch (byteFileType)
case "TestToken":
byteCodeFile = fileLocation+"_TESTTOKEN.bin" ;
break;
case "SafeMath":
byteCodeFile = fileLocation+"_SafeMath.bin" ;
break;
case "Owned":
byteCodeFile = fileLocation+"_Owned.bin" ;
break;
case "ERC20Interface":
byteCodeFile = fileLocation+"_ERC20Interface.bin" ;
break;
case "ApproveAndCallFallBack":
byteCodeFile = fileLocation+"_ApproveAndCallFallBack.bin" ;
break;
Core.getLogger("Solidity").info(byteCodeFile);
Scanner scanner = new Scanner( new File(byteCodeFile), "UTF-8" );
String text = scanner.useDelimiter("\\A").next();
scanner.close();
return text;
catch(Exception e)
// Block of code to handle errors
return null ;
答案
试着做吧。
当是Linux环境。
移除 bash /c
cmd = "/usr/local/bin/compile.sh";
你需要另一个环境条件(if)来运行下面的代码。
ProcessBuilder pb = new ProcessBuilder(cmd);
Process p = pb.start();
请你试一试,然后告诉我
我的代码
文件 optdevelopmentworkpacetestessrctestesMain.java
package testes;
import java.io.IOException;
public class Main
public static void main(String[] args) throws IOException
String cmd = "/opt/development/workspace/testes/src/testes/script.sh";
ProcessBuilder pb = new ProcessBuilder(cmd);
Process p = pb.start();
System.out.println(p);
文件script.sh
mkdir stackoverfllow
文件夹已在 optdevelopmentworkspacetestes中创建。
以上是关于linux 中如何执行脚本?的主要内容,如果未能解决你的问题,请参考以下文章