我当前的快捷方式有以下目标:C:\Development\Git\git-bash.exe
如何让它执行更复杂的事情,例如:
C:\Development\Git\git-bash.exe **ls**
或
C:\Development\Git\git-bash.exe **java -jar myfile.war**
答案 0 :(得分:2)
您可以使用以下方法修改快捷方式:
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script>
$( document ).ready(function() {
$('h1').css('color','#3498db');
});
</script>
<style>
.wrapper{
height:450px;
background:#ededed;
text-align:center
}
</style>
</head>
<body>
<div class="wrapper">
<h1>Title</h1>
</div>
</body>
</html>
如果你想要git-bash,并且为了避免git-bash在执行这些命令后立即打开和关闭Windows,你可以执行(或修改快捷方式):
bash.exe --init-file <(echo "ls; pwd")
这样,在执行你想要的第一个命令后,shell就会保留在原位。