10 lines
70 B
Bash
10 lines
70 B
Bash
#!/bin/bash
|
|
|
|
TARGET=$1
|
|
|
|
if [ -f ${TARGET} ]; then
|
|
exit 1
|
|
fi
|
|
|
|
exit 0
|