From 8771f59ff3fb0b7a75f21f6037600ac0c229bd4c Mon Sep 17 00:00:00 2001 From: Anton Dyudin Date: Fri, 6 Mar 2015 11:22:12 -0800 Subject: [PATCH] Fix #262 --- docs/pub/doc/arvo/util.md | 6 +++--- main/app/into/core.hook | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/pub/doc/arvo/util.md b/docs/pub/doc/arvo/util.md index 0546bf1fa..0ee75bb1c 100644 --- a/docs/pub/doc/arvo/util.md +++ b/docs/pub/doc/arvo/util.md @@ -42,8 +42,8 @@ Copy a file to a given location. `~zod/try=> :grep 'literal'` -"grep" a file or standard input. Currently only supports literals, but -will eventuall support regular expressions. +"grep" a file or standard input. Currently only supports a literal cord, +but will eventuall support regular expressions. ------------------------------------------------------------------------ @@ -61,7 +61,7 @@ in the process. Often used to ping ships to check connectivity. `~zod/try=> :into /path/to/file 'contents'` Write text to a file. If the specified file does not exist, create a -file by that name. +file by that name. If it does exist, replace its contents. ------------------------------------------------------------------------ diff --git a/main/app/into/core.hook b/main/app/into/core.hook index 25f92812d..f7f93a6f2 100644 --- a/main/app/into/core.hook +++ b/main/app/into/core.hook @@ -1,3 +1,4 @@ +:: Over/write to location, usage :into %/foo/txt 'Contents' !: :::: ::