Access a file in hex
- Ed_P
- Contributor
- Posts: 8968
- Joined: 06 Feb 2013, 22:12
- Distribution: Cinnamon 5.01 ISO
- Location: Western NY, USA
Access a file in hex
In Windows I use to use an app called HexEdit, is there an app that does that in Porteus?
Ed_P
beny
Post#3 by Ed_P » 02 Mar 2022, 19:49
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
Ed_P