home
/
code
/
khome.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Add bin/websrv
[khome.git]
/
home
/
bin
/
weekday-viz
1
#! /bin/sh
2
3
awk
-v
dow
=
"$(date '+%u')"
'
4
BEGIN {
5
viz[1] = "M---- --"
6
viz[2] = "-T--- --"
7
viz[3] = "--W-- --"
8
viz[4] = "---T- --"
9
viz[5] = "----F --"
10
viz[6] = "----- S-"
11
viz[7] = "----- -S"
12
13
print viz[dow]
14
}
15
'
This page took
0.068942 seconds
and
4
git commands to generate.