mirror of
https://git.sr.ht/~coasteen/dotfiles
synced 2025-11-04 14:47:38 +01:00
9 lines
82 B
Bash
9 lines
82 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
|
||
|
|
# Get the year.
|
||
|
|
year=$(date +"%Y")
|
||
|
|
|
||
|
|
# Output the year.
|
||
|
|
echo "$year"
|