eolas/neuron/8a3d2c22-db18-478e-8e4c-1e11b6fe5320/Bash_file_exists.md
2024-12-01 19:37:47 +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