Answers for "xargs echo"

0

xargs echo

printf '%s\n' *          # prints the names of the files in the current directory
printf '%s\n' "$@"       # prints the positional arguments
printf '%s\n' "${a[@]}"  # prints the element of the array `a`
Posted by: Guest on March-06-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language