scripts

My personal collection of scripts
git clone git://src.gearsix.net/scripts
Log | Files | Refs | Atom | README | LICENSE

commit 2e1caf613de7e7abd3353c54fc3a5987b9b076cc
parent eefca37c8feb34852c323a9ded0684e0495106c3
Author: GeaRSiX <gearsix@tuta.io>
Date:   Tue, 23 Jun 2020 00:28:43 +0100

added src/mkdtouch.sh

Diffstat:
Asrc/mkdtouch.sh | 8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)

diff --git a/src/mkdtouch.sh b/src/mkdtouch.sh @@ -0,0 +1,8 @@ +#!/bin/sh +# description: mkdir $1; touch ${2, ...} +# arguments: $1 = dir path to make; $2, ... = filenames to touch + +mkdir $1 +shift +touch $@ +