From 8ef5c24abd55d3fe7dafe93687be5928e0152c02 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 22 Feb 2026 23:22:48 -0600 Subject: fix: correct broken shebangs in zfssnapshot and zfsrollback MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #!/bin/env bash doesn't exist — changed to #!/usr/bin/env bash. --- custom/zfsrollback | 2 +- custom/zfssnapshot | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/custom/zfsrollback b/custom/zfsrollback index d73e0e8..90be5d2 100755 --- a/custom/zfsrollback +++ b/custom/zfsrollback @@ -1,4 +1,4 @@ -#!/bin/env bash +#!/usr/bin/env bash # Craig Jennings # Roll back ZFS datasets to a selected snapshot using fzf. diff --git a/custom/zfssnapshot b/custom/zfssnapshot index 749ea5a..98f8315 100755 --- a/custom/zfssnapshot +++ b/custom/zfssnapshot @@ -1,4 +1,4 @@ -#!/bin/env bash +#!/usr/bin/env bash # Craig Jennings # Create a ZFS snapshot across all datasets with a dated, descriptive name. -- cgit v1.2.3