6 lines
97 B
Plaintext
6 lines
97 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
statout=$(stat -c %W --terse /)
|
||
|
birthdate=$(date --date="@$statout")
|
||
|
echo $birthdate
|