Access a file in hex
Posted: 02 Mar 2022, 18:55
In Windows I use to use an app called HexEdit, is there an app that does that in Porteus?
Code: Select all
#!/bin/sh
if [ `whoami` != "root" ]; then
echo -e "Enter root's password\033[1;31m"
su -c "sh $0 $1"
exit
fi
echo -e "\033[0m"; echo -en "\033]0;download2xzm\a"
#set -x;
cd /home/guest/Downloads/
mkdir -p /tmp/dwnld/
cp -r -a --parents install/* /tmp/dwnld/
cp -r -a --parents usr/* /tmp/dwnld/
dir2xzm /tmp/dwnld /tmp/hexedit.xzm
rm -rf /tmp/dwnld/ && echo && ls -sh /tmp/*.xzm
sleep 5
exit