-
@mattcassinelli shortcuts list -f YouTube | tr '\n' \0' | xargs -0 -I name touch -a name.app tr: replace the newline character with the NUL character xargs with -0: split the input on the NUL character and run the command with each input -I: replace “name” in the command w/ input
-
@mattcassinelli Here, “name” can be any arbitrary string (although I think it needs to be one word).