scripts/testvim.zsh

15 lines
181 B
Bash
Raw Permalink Normal View History

2022-04-20 17:07:08 +02:00
#!/bin/zsh
set -xe
nutmp=$(mktemp -d)
cd "$nutmp"
unset nutmp
for i in {1..20}; do
vim --startuptime start$i.log;
done
find start* -exec grep STARTED {} \; | cut -d' ' -f1