eolas/neuron/1db7cff2-4b98-4e94-9a89-ccce8e8a4c6f/Bash_file_exists.md
2024-12-09 18:34:15 +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