diff --git a/_posts/2019-05-07-warp.md b/_posts/2019-05-07-warp.md new file mode 100644 index 0000000..074bb7c --- /dev/null +++ b/_posts/2019-05-07-warp.md @@ -0,0 +1,24 @@ +--- +layout: post +title: "warp" +description: "File manipulation across terminals sessions made easy" +category: bash +tags: [utility, files] +--- +Tired of figuring out the relative path to a file, so you can copy it? +Tire no more! Warp is a small bash tool to move or copy a file from one location to another. + +## Basic Usage + +To copy a file in a directory in one terminal, to the directory of another terminal, first warp in the file +``` +warp in foo.txt +``` +In the other terminal, warp copy it +``` +warp cp . +``` + +## Links +* [Source Code (GitHub)][https://github.com/nathan-abercrombie/bash-file-warp] +* [Author: Nathan Abercrombie](abercrombie.nathan@gmail.com)