mirror of
https://github.com/HowardHinnant/date.git
synced 2024-12-26 07:53:16 +08:00
8 lines
55 B
Bash
8 lines
55 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [[ -e $@ ]]; then
|
||
|
exit 1;
|
||
|
fi
|
||
|
exit 0;
|
||
|
|