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