Dotfiles, utilities, and other apparatus.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Brennen Bearnes 9699363e45 some xargs-alias fiddling 3 years ago
..
README xargs-alias: add sed version 3 years ago
example_selection fragments/xargs-alias 3 years ago
files.lftp fragments/xargs-alias 3 years ago
lst.sh some xargs-alias fiddling 3 years ago
sed_version.sh xargs-alias: add sed version 3 years ago

README

No longer includes an xargs invocation.

A response to https://sonomu.club/@gavcloud/104243111086171881 that I'm not
sure is entirely reasonable.

May or may not work on a Mac.

The original question was how to do something like the intent of:

alias lst "!cat ${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.selection | xargs -0 -I fname echo "put" \'fname\' > files.lftp"

This is a good example of how ridiculously painful quote escaping is in the
shell, and how I don't really have a good set of general habits for avoiding
these problems, apart from doing this kind of thing in a general purpose
programming language instead of involving the shell.