From 73e31b79de25298a519671ef8b6c2ab68af9c87e Mon Sep 17 00:00:00 2001 From: Suleyman Farajli Date: Sat, 20 Jul 2024 20:18:30 +0400 Subject: directory layout changed --- scripts/nospac | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 scripts/nospac (limited to 'scripts/nospac') diff --git a/scripts/nospac b/scripts/nospac new file mode 100755 index 0000000..3dee5de --- /dev/null +++ b/scripts/nospac @@ -0,0 +1,5 @@ +#!/bin/sh + +# Replace all the spaces in file names with "_" in the current working directory + +for file in *; do mv "$file" `echo $file | tr ' ' '_'` ; done -- cgit v1.2.3