Created
January 1, 2022 13:52
-
-
Save medanisjbara/7a80597e27ccc8a53448af065a2591d7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
size=$1; | |
name=$2; | |
for (i=3; i<=NF; i++) | |
{ | |
tmp=(name " " $i); | |
name=tmp | |
} | |
# filename=($0 ~ /'/)? ("\"" name "\""):("'" name "'") | |
filename=("'" name "'") | |
printf $1 " " | |
cmd=("ls -d " filename " --color") | |
system(cmd) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment