How do I convert hex number to decimal number using a shell script under UNIX / Linux operating systems?
{ 22 comments }
How do I convert hex number to decimal number using a shell script under UNIX / Linux operating systems?
{ 22 comments }
How do I pass all command line args to my bash alias called foo. For example: alias foo=”/path/to/command $@” However $@ get interpreted when creating the alias instead of during the execution of the alias and escaping the $ doesn’t work either. How do I solve this problem?
{ 19 comments }