Hi,
1/ I've got a question : is bogus bounces NOT already solved ?

2/>backticks instead [of $(...)]

Can't we use pipes ? 
 
Best Regards

K.

      De : Andy Goth <andrew.m.g...@gmail.com>
 À : Fossil Users Mailing List <fossil-users@lists.fossil-scm.org> 
 Envoyé le : Mercredi 9 novembre 2016 3h03
 Objet : [fossil-users] Follow-up to reverting missing files
   
With my enhanced changes command, the way to revert all missing files is:fossil 
revert $(fossil changes -missing)If your shell doesn't have $(...) command 
substitution, use `...` backticks instead.If you're unlucky enough to have 
files with spaces in their names, you'll need:fossil changes -missing | xargs 
-r -d'\n' fossil revertYou can limit the scope by giving one or more directory 
name arguments to changes, e.g. "." for the current directory.Short of being 
clever with grep, you cannot inhibit recursion, so subdirectories are always 
processed too. I hope to change this eventually.If you don't have my enhanced 
changes command, in place of "fossil changes -missing" you can write:fossil 
changes | sed -rn '/^MISSING */s///p'This fails if a filename happens to start 
with spaces.Sorry, I can't properly reply to the email since I can see it only 
in the web archive and not my mailer (actually my phone), so it must have 
arrived during the time my account was deactivated due to bogus bounces.
_______________________________________________
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


   
_______________________________________________
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Reply via email to