From 5c89f7e27d5d6ef5029e63030dc98b36cbe11e53 Mon Sep 17 00:00:00 2001 From: Salt Date: Thu, 31 Aug 2017 13:00:46 -0500 Subject: [PATCH] .bin: Removed rep Turns out watch is a thing --- .bin/rep | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100755 .bin/rep diff --git a/.bin/rep b/.bin/rep deleted file mode 100755 index 05fbb439..00000000 --- a/.bin/rep +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash -if [ -z "$@" ]; then - printf "rep: no commands specified\n" - exit 1 -fi -while :; do - for command in "$@"; do - $command - done - sleep 1 -done -