diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2025-01-23 20:50:28 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2025-01-23 20:50:28 +0100 |
commit | d21701568c85a49b42cf8da48b42bdb464eaab37 (patch) | |
tree | f5a7b0fd205a09c0ed6bef58846dd7456a70c437 /.local | |
parent | 7bad3080d2882b01ae89daaaba506b4f86dc53f0 (diff) |
add hide script
Diffstat (limited to '.local')
-rwxr-xr-x | .local/share/bin/hide | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.local/share/bin/hide b/.local/share/bin/hide new file mode 100755 index 0000000..cb49be0 --- /dev/null +++ b/.local/share/bin/hide @@ -0,0 +1,4 @@ +#!/bin/sh +for file in "$@" ; do + mv "$file" ".$file" +done |