Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

xargs echo

printf '%s
' *          # prints the names of the files in the current directory
printf '%s
' "$@"       # prints the positional arguments
printf '%s
' "${a[@]}"  # prints the element of the array `a`
Source by unix.stackexchange.com #
 
PREVIOUS NEXT
Tagged: #xargs #echo
ADD COMMENT
Topic
Name
8+8 =