From 1e751ef949a9f646ccdab9be89239afa51561302 Mon Sep 17 00:00:00 2001 From: The Magician Date: Tue, 21 Nov 2023 11:51:42 +0000 Subject: [PATCH] Add script which prints line-separated $PATH --- path | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 path diff --git a/path b/path new file mode 100755 index 0000000..6ca748b --- /dev/null +++ b/path @@ -0,0 +1,3 @@ +#!/bin/sh + +echo $PATH | tr ':' '\n'