mirror of
https://github.com/autistic-symposium/shell-whiz-toolkit.git
synced 2025-05-10 10:44:59 -04:00
15 lines
No EOL
174 B
Bash
Executable file
15 lines
No EOL
174 B
Bash
Executable file
#!/bin/bash
|
|
|
|
|
|
if [ $# -ne 1 ]
|
|
then
|
|
echo "Usage - $0 file-name"
|
|
exit 1
|
|
fi
|
|
|
|
if [ -f $1 ]
|
|
then
|
|
echo "$1 file exist"
|
|
else
|
|
echo "Sorry, $1 file does not exist"
|
|
fi |