fileboy/raw.go

88 lines
2.8 KiB
Go
Raw Normal View History

2018-09-10 08:23:27 +00:00
package main
var exampleFileGirl string = `#
core:
#
version: 1
#
monitor:
#
# test1 test1
# test1/test2 test1/test2
# test1,* test1
# .,*
includeDirs:
- .,*
#
# .idea .idea
exceptDirs:
- .idea
- .git
- .vscode
2018-09-19 03:43:16 +00:00
- node_modules
- vendor
2018-09-10 08:23:27 +00:00
2018-09-12 03:11:32 +00:00
# command
# .go .go command
# .* command
2018-09-10 08:23:27 +00:00
types:
- .go
#
command:
#
#
#
#
2018-09-19 03:43:16 +00:00
#
# {{file}} ( a.txt test/test2/a.go)
# {{ext}} ( .go)
# {{changed}} (, 1537326690523046400)
# 使cp {{file}} /root/sync -rf myCommand --{{ext}} {{changed}}
2018-09-10 08:23:27 +00:00
exec:
- go version
- go env
2018-09-19 03:43:16 +00:00
- echo {{file}}
2018-09-10 08:23:27 +00:00
`
2018-09-10 10:00:28 +00:00
var firstRunHelp = ` fileboy ?
fileboy init
:
`
2018-09-10 08:23:27 +00:00
var helpStr = `fileboy [option]
Usage of fileboy:
filegirl.yaml
init
fileboy, filegirl.yaml
exec
2018-09-12 03:11:32 +00:00
command
2018-09-30 01:43:14 +00:00
version
2018-09-10 08:23:27 +00:00
`
var englishSay = []string{
` Have you, the darkness is no darkness.`,
` Why do the good girls always love bad boys?`,
` If love is not madness.`,
` This world is so lonely without you.`,
` You lie. Silence in front of me.`,
` I need him like I need the air to breathe.`,
` Happiness is when the desolated soul meets love.`,
` What I can lose, but do not want to lose you.`,
` The same words, both miss, is also missed.`,
` Each bathed in the love of the people is a poet.`,
}
var logo = `
_______ _____ _ _______ ______ _____ _ _
(_______|_____) | (_______|____ \ / ___ \| | | |
_____ _ | | _____ ____) ) | | | |___| |
| ___) | | | | | ___) | __ (| | | |\_____/
| | _| |_| |_____| |_____| |__) ) |___| | ___
|_| (_____)_______)_______)______/ \_____/ (___)
`