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