From 607f41bcdaf8d4bfbbee7feeb66083419356e158 Mon Sep 17 00:00:00 2001 From: Nathan Abercrombie Date: Tue, 7 May 2019 16:50:43 -0500 Subject: [PATCH] Add warp to bpkg This tool makes file manipulation across terminals easy --- _posts/2019-05-07-warp.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 _posts/2019-05-07-warp.md 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)