哪个命令会将 encrypted_scroll.txt 中所有匹配的 pharaoh's_treasure 替换为 treasure_found?
encrypted_scroll.txt
pharaoh's_treasure
treasure_found
sed -i "s/pharaoh's_treasure/treasure_found/g" encrypted_scroll.txt
grep -o 'treasure_found' encrypted_scroll.txt
sed -i encrypted_scroll.txt treasure_found
sed -i "s/treasure_found/pharaoh's_treasure/g" encrypted_scroll.txt