无法在 shell 脚本中 grep 外语
我是 shell 脚本编写的新手,我有一个文本,其中包含以下格式的文本:- "some foreign language",'corresponding ID to text' 例如:- "Назад",IDC_SSB_DLG_BACK_BTN 我需要找到与 ID 相关的文本并将其保存在文本文件中。 这是我的示例脚本:- #!/bin/sh target_file=$1 output=$2 translationID=IDC_SSB_DLG_BACK_BTN translation=$(cat $target_file | grep $translati...