From fb4f95c2b7df358a2794c67d18e1dcb0e89b7bf4 Mon Sep 17 00:00:00 2001 From: Laurent Le Houerou Date: Thu, 2 Sep 2021 12:52:36 +0400 Subject: [PATCH] replace cat with Get-Content --- ssh/setup.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssh/setup.ps1 b/ssh/setup.ps1 index a488698..b8f8d2b 100644 --- a/ssh/setup.ps1 +++ b/ssh/setup.ps1 @@ -1,2 +1,2 @@ mkdir -p ~/.ssh -cat ./ssh/key.pub >> ~/.ssh/authorized_keys \ No newline at end of file +Get-Content ./ssh/key.pub >> ~/.ssh/authorized_keys \ No newline at end of file