Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Linux を使用して、TRA と TRF の 2 つのバイナリ ファイルがあります。TRA は TRF 内に含める必要があります。どうすればこれを確認できますか?
私が試してみましたgrep -vf TRA TRF
grep -vf TRA TRF
しかし、一致しないと確信している場合でも、常に一致すると言います。
バイナリ データをテキストに変換してから grep することができます。
od -A n -v -t x1 TRA | tr -d '\n' > TRA_HEX od -A n -v -t x1 TRF | tr -d '\n' > TRF_HEX if grep -f TRA_HEX TRF_HEX > /dev/null; then echo "included" fi