瀏覽代碼

do not use paren in clock()

pull/1/head
10sr 12 年之前
父節點
當前提交
fd04f17e0c
共有 1 個檔案被更改,包括 9 行新增11 行删除
  1. +9
    -11
      bashrc

+ 9
- 11
bashrc 查看文件

@@ -249,17 +249,15 @@ fi
alias setup.py="sudo python3 setup.py install --record files.txt"

clock(){
(
local tformat="%Y/%m/%d %H:%M:%S %z"
local t=
cal
while true
do
t="`date "+${tformat}"`"
printf "\\r$t"
sleep 1
done
)
local tformat="%Y/%m/%d %H:%M:%S %z"
local t=
cal
while true
do
t="`date "+${tformat}"`"
printf "\\r$t"
sleep 1
done
}

man(){


Loading…
取消
儲存