Ultimate access to all questions.
Upgrade Now 🚀
Sign in to unlock AI tutor
A data engineer scheduled a daily job at 2 PM that uses a legacy shell script to copy a file from /tmp to /FileStore. Despite the /tmp directory being unavailable for a week, the job did not fail. What could explain this behavior?
/tmp
/FileStore
A
The cp command lacks the -e option, which should be cp /tmp/raw_data.csv /FileStore/data.csv -e
cp
-e
cp /tmp/raw_data.csv /FileStore/data.csv -e
B
The cp command lacks the -error option, which should be cp /tmp/raw_data.csv /FileStore/data.csv -error
-error
cp /tmp/raw_data.csv /FileStore/data.csv -error
C
The %sh magic command lacks the -e option, which should be %sh -e
%sh
%sh -e
D
The %sh magic command lacks the -error option, which should be %sh -error
%sh -error
E
Both the %sh magic command lacks the -error option and the cp command lacks the -e option