Skip to content
Permalink
5.16.0
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
Latest commit 7c0eefd May 10, 2020 History
0 contributors

Users who have contributed to this file

executable file 10 lines (8 sloc) 147 Bytes
#!/bin/bash
if [ "$#" -ne 1 ]; then
echo "You must enter exactly 1 argument: the file name"
exit 1
fi
if [ -f "$1" ]; then
echo "exists"
fi