Using bash wildcards with prefix Using bash wildcards with prefix unix unix

Using bash wildcards with prefix


You can use the Parameter expansion:

cat "${@/#/t_}"

/ means substitute, # means at the beginning.