eolas/neuron/23e0f0eb-f9c9-467a-86da-ba26a6fd9b56/Bash_file_exists.md
2025-01-21 17:10:11 +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