eolas/neuron/6bd22abe-1c26-4082-9ee1-2e98738d9784/Bash_file_exists.md
2024-11-24 10:53:19 +00:00

230 B

tags created
shell
Sunday, November 17, 2024

Bash file exists

FILE_PATH="$PWD/foo/bar.json"
if [ ! -f "$FILE_PATH" ]; then
	echo -e "ERROR Graph file ( $FILE_PATH ) does not exist. Exiting."
	exit 0
fi