ファイルが更新されたときに実行したいコマンドをあとに続ける
./restart.bash php server.php
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>タイトルです</title> | |
</head> | |
<body> | |
<form name="head"></form> | |
<form name="title"></form> | |
<form name="body"></form> |
define('sample.vue', [], '<template></template>'); | |
httpVueLoader._httpRequest = httpVueLoader.httpRequest; | |
httpVueLoader.httpRequest = function (url) { | |
if (!require.defined(url)) { | |
return httpVueLoader._httpRequest.apply(this, arguments); | |
} | |
new Promise(function (resolve, reject) { | |
require([ url ], function (template) { |
//go:generate go run golang.org/x/sys/windows/mkwinsyscall -output zmain_windows.go main.go | |
//sys GetConsoleProcessList(processList []uint32) (processCount uint32, err error) | |
//sys SetConsoleTitle(consoleTitle string) (err error) = SetConsoleTitleW | |
package main | |
import ( | |
"bufio" | |
"fmt" | |
"os" |
package main | |
import ( | |
"fmt" | |
"runtime" | |
"github.com/go-ole/go-ole" | |
"github.com/go-ole/go-ole/oleutil" | |
"golang.org/x/sys/windows" | |
) |
package main | |
import ( | |
"fmt" | |
"golang.org/x/sys/windows" | |
) | |
func main() { | |
filename := []uint16{0xD800, 0x00} |