Action | SOL | SOW | Char | Char | EOW | EOL |
---|---|---|---|---|---|---|
Move | Ctl+a | Esc+b | Ctl+b | Ctl+f | Esc+f | Ctl+e |
Delete | Ctl+x | Ctl+w | Bsp | Ctl+d | Esc+d | Ctl+k |
Other Shortcuts | |||||
---|---|---|---|---|---|
Delete line | Ctl+u | Uppercase | Esc+u | Exit cfg | Ctl+z |
Paste | Ctl+y | Lowercase | Esc+L |
Action | SOL | SOW | Char | Char | EOW | EOL |
---|---|---|---|---|---|---|
Move | Ctl+a | Esc+b | Ctl+b | Ctl+f | Esc+f | Ctl+e |
Delete | Ctl+x | Ctl+w | Bsp | Ctl+d | Esc+d | Ctl+k |
Other Shortcuts | |||||
---|---|---|---|---|---|
Delete line | Ctl+u | Uppercase | Esc+u | Exit cfg | Ctl+z |
Paste | Ctl+y | Lowercase | Esc+L |
#!/usr/bin/env python | |
## Tiny Syslog Server in Python. | |
## | |
## This is a tiny syslog server that is able to receive UDP based syslog | |
## entries on a specified port and save them to a file. | |
## That's it... it does nothing else... | |
## There are a few configuration parameters. | |
LOG_FILE = 'yourlogfile.log' |
[core] | |
repositoryformatversion = 0 | |
filemode = false | |
bare = false | |
logallrefupdates = true | |
symlinks = false | |
ignorecase = true | |
[remote "origin"] | |
url = //host/tmp/a | |
fetch = +refs/heads/*:refs/remotes/origin/* |
pushd \\<host>\share | |
git init --bare myrepo.git | |
popd |
[core] | |
repositoryformatversion = 0 | |
filemode = false | |
bare = false | |
logallrefupdates = true | |
symlinks = false | |
ignorecase = true | |
[remote "origin"] | |
url = //host/tmp/a | |
fetch = +refs/heads/*:refs/remotes/origin/* |
var domain = { | |
"com":{ | |
"yammer":{ | |
"bla":1, | |
"fasel":2 | |
}, | |
"microsoft":3 | |
}, | |
"de":{ | |
"test":{ |
User: | |
default: true | |
permissions: | |
- essentials.hat | |
- herochat.pm | |
- iBank.withdraw | |
- herochat.leave.* | |
- herochat.speak.global | |
- herochat.join.global | |
- iBank.access |
%hash = (1 => 'a',2 => 'b',3 => 'c',); | |
map { print "$_ =>\t$hash{$_}\n" } keys %hash; |