Added birthday support to BSD
This commit is contained in:
parent
ee4353d07b
commit
19be922cb9
2
1.1.md
2
1.1.md
|
@ -59,7 +59,7 @@ systems it isn't packaged for yet!
|
|||
|
||||
**Birthday:**
|
||||
|
||||
- Added `birthday` which prints the age of tyour OS
|
||||
- Added `birthday` which prints the age of your OS
|
||||
- Added `--birthday_shorthand` and `$birthday_shorthand` to shorten/lengthen<br \>
|
||||
the output of birthday.
|
||||
- Added `--birthday_time` and `$birthday_time` to show/hide the time in the output.
|
||||
|
|
7
fetch
7
fetch
|
@ -1197,7 +1197,12 @@ getbirthday () {
|
|||
;;
|
||||
|
||||
"Mac OS X")
|
||||
birthday="$(ls -alctT /var/log/CDIS.custom | tail -1 | awk '{printf $6 " " $7 " " $9 " " $8}')"
|
||||
birthday="$(ls -alctT /var/log/CDIS.custom | awk '{printf $6 " " $7 " " $9 " " $8}')"
|
||||
date_cmd="$(date -j -f "%b %d %Y" "$birthday" "+%a %d %b %Y %l:%M %p")"
|
||||
;;
|
||||
|
||||
*"BSD")
|
||||
birthday="$(ls -alctT /etc/hostid | awk '{printf $6 " " $7 " " $9 " " $8}')"
|
||||
date_cmd="$(date -j -f "%b %d %Y" "$birthday" "+%a %d %b %Y %l:%M %p")"
|
||||
;;
|
||||
|
||||
|
|
Reference in New Issue