4 lines
112 B
Bash
Executable File
4 lines
112 B
Bash
Executable File
#!/bin/sh
|
|
yesterday="$(date -d "yesterday 13:00" '+%Y-%m-%d')"
|
|
touch -d "$yesterday" ~/.hidden-dir/.hidden-file
|