I'm reading this bash command in a Bash Operator for Apache Airflow and I couldn't really understand it despite some Googling attempt.
if [ ! -f "{}" ]; then exit 1; fi
in this code chunk:
check_file_existence = BashOperator(
task_id='check_file_existence',
bash_command='if [ ! -f "{}" ]; then exit 1; fi'.format(input_file))
Could you help me explaining this bash command?