Skip to content

Commit

Permalink
Update bits-info.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
ale5000-git authored Sep 26, 2024
1 parent 61c5c54 commit 4c51114
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tools/bits-info.sh
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,11 @@ check_bitness_of_pe_file()
echo '---'
echo ":_${1:?}_"
test -e "${1:?}"; echo "Exist: $?"
command -v hexdump; echo "hexdump: $?"
command -v hexdump || true; echo "hexdump: $?"
command -v od || true; echo "od: $?"
command -v xxd || true; echo "xxd: $?"
command -v tac || true; echo "tac: $?"
command -v tr || true; echo "tr: $?"
echo '---'
if test ! -e "${1:?}" || ! command -v hexdump; then
: #printf '%s\n' 'unknown'
Expand Down

0 comments on commit 4c51114

Please sign in to comment.