encrypted_scroll.txt에서 모든 pharaoh's_treasure 일치 항목을 treasure_found로 바꾸는 명령은 무엇인가요?
encrypted_scroll.txt
pharaoh's_treasure
treasure_found
sed -i encrypted_scroll.txt treasure_found
grep -o 'treasure_found' encrypted_scroll.txt
sed -i "s/pharaoh's_treasure/treasure_found/g" encrypted_scroll.txt
sed -i "s/treasure_found/pharaoh's_treasure/g" encrypted_scroll.txt