diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-10-11 16:13:31 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-10-11 16:13:31 +0200 |
commit | 41d1e86331f180bdd34926541afdecb391a1519e (patch) | |
tree | d011864ea3a07d9efe5ced31366a1e7dc8560701 /.local/bin | |
parent | unixize script update (diff) | |
download | dotfiles-bsd-41d1e86331f180bdd34926541afdecb391a1519e.tar.gz dotfiles-bsd-41d1e86331f180bdd34926541afdecb391a1519e.tar.bz2 dotfiles-bsd-41d1e86331f180bdd34926541afdecb391a1519e.tar.xz dotfiles-bsd-41d1e86331f180bdd34926541afdecb391a1519e.tar.zst dotfiles-bsd-41d1e86331f180bdd34926541afdecb391a1519e.zip |
unixize update
Diffstat (limited to '.local/bin')
-rwxr-xr-x | .local/bin/unixize | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/unixize b/.local/bin/unixize index 0814bca..29e7167 100755 --- a/.local/bin/unixize +++ b/.local/bin/unixize @@ -26,7 +26,7 @@ sub get_new_files $_ =~ s/\ -\ /-/g; $_ =~ s/\_-\_/-/g; $_ =~ s/\ /_/g; - $_ =~ s/[\$#@~!&*()\[\];,:?^`\\\/]+/-/g; + $_ =~ s/[\$#@~!&*()\[\];,:?^`\\\/<>|]+/-/g; $_ = lc($_); push @new_files, $_; } |