Now you should combine with variables to pass values from function to function, like:
edit_case 'sed s/^//g' $(get_nested_cases_by_section_id 1)
But it's better to implement support of stdin to allow following:
get_nested_cases_by_section_id 1 | edit_case 'sed s/^//g'
to get more human readable pipeline
Now you should combine with variables to pass values from function to function, like:
But it's better to implement support of stdin to allow following:
to get more human readable pipeline