Skip to content

Instantly share code, notes, and snippets.

@aarondill
aarondill / repro.sh
Last active October 20, 2023 10:33
Repro of alignment bug introduced in https://github.com/eza-community/eza/pull/318
#!/usr/bin/env bash
function verbose() {
echo "> $*"
"$@"
}
tmp=$(mktemp -d)
echo "tmpdir: $tmp"
touch -- "$tmp/a file with spaces"
for i in {1..40}; do touch -- "$tmp/long-file-name-$i"; done