Skip to content

Instantly share code, notes, and snippets.

@iangreenleaf
Last active August 29, 2015 14:15
Show Gist options
  • Save iangreenleaf/6dfb4d0847ebda0cc3dd to your computer and use it in GitHub Desktop.
Save iangreenleaf/6dfb4d0847ebda0cc3dd to your computer and use it in GitHub Desktop.

Revisions

  1. iangreenleaf revised this gist Apr 17, 2015. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion gistfile1.sh
    Original file line number Diff line number Diff line change
    @@ -1 +1 @@
    for f in $(ack -f); do vim +wq "$f"; done
    ack -f --print0 | xargs -0 -n1 vim +wq
  2. iangreenleaf created this gist Feb 19, 2015.
    1 change: 1 addition & 0 deletions gistfile1.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1 @@
    for f in $(ack -f); do vim +wq "$f"; done