We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
#!/usr/bin/env bash function to_decimal () { echo "$(("$1"#"$2"))" } to_decimal 16 ff
The function to_decimal converts the number "$2" in base "$1" to decimal. The parser fails to recognize this instruction.
to_decimal
"$2"
"$1"