Which command replaces every pharaoh's_treasure match with treasure_found in encrypted_scroll.txt?
pharaoh's_treasure
treasure_found
encrypted_scroll.txt
grep -o 'treasure_found' encrypted_scroll.txt
sed -i "s/treasure_found/pharaoh's_treasure/g" encrypted_scroll.txt
sed -i encrypted_scroll.txt treasure_found
sed -i "s/pharaoh's_treasure/treasure_found/g" encrypted_scroll.txt