diff options
Diffstat (limited to 'zsh/functions/short-uptime.zsh')
| -rw-r--r-- | zsh/functions/short-uptime.zsh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/zsh/functions/short-uptime.zsh b/zsh/functions/short-uptime.zsh new file mode 100644 index 0000000..0ab9849 --- /dev/null +++ b/zsh/functions/short-uptime.zsh @@ -0,0 +1,3 @@ +short-uptime () { + uptime | awk '{print $(3)"d "$(5)" "$(NF+0)" "$(NF-1)" "$(NF-0)}' +} |