mirror of
https://github.com/mr0xb/dotfiles.git
synced 2026-08-27 19:34:57 -04:00
9 lines
188 B
Shell
Executable file
9 lines
188 B
Shell
Executable file
#!/usr/bin/env bash
|
|
|
|
#while read data; do
|
|
data=$1
|
|
withoutQuotes=`echo ${data} | sed s/\"//g`
|
|
without0x=`echo ${withoutQuotes} | sed s/0x//g`
|
|
clean=${without0x}
|
|
echo $((16#${clean}))
|
|
#done
|