Aludirk
Aludirk
I have a function: ```bash function error_msg_func() { local filename="${1}" local lineno=${2} echo "error xxx (${filename}:${lineno})" } ``` For convenient: ```bash shopt -s expand_aliases alias error_msg='error_msg_func "${BASH_SOURCE[0]}" ${LINENO}' ``` So...
I have a function that return a string: ```bahs function say_hi() { eval "${1}=HI" } ``` First, I test it with directly call the function: ```bash @test "Test return value...
We are going to implement the [International Standard Content Number Specification](https://iscn.io/) by using IPLD as our linked data structure, it is a global identifier for the digital content. The IPLD...