From bc2680c1984a6f5aba3167670e4a4c1f9ff5836f Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Wed, 29 Sep 2021 03:21:36 +0100 Subject: [PATCH] Replace rot13 with a tr implementation --- quickemu | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/quickemu b/quickemu index 71b053d..fff8017 100755 --- a/quickemu +++ b/quickemu @@ -211,8 +211,7 @@ function vm_boot() { else CPU="-cpu Penryn,kvm=on,vendor=GenuineIntel,+aes,+avx,+avx2,+bmi1,+bmi2,+fma,+hypervisor,+invtsc,+kvm_pv_eoi,+kvm_pv_unhalt,+popcnt,+ssse3,+sse4.2,vmware-cpuid-freq=on,+xsave,+xsaveopt,check" fi - - OSK=$(echo "bheuneqjbexolgurfrjbeqfthneqrqcyrnfrqbagfgrny(p)NccyrPbzchgreVap" | rot13) + OSK=$(echo "bheuneqjbexolgurfrjbeqfthneqrqcyrnfrqbagfgrny(p)NccyrPbzchgreVap" | tr 'A-Za-z' 'N-ZA-Mn-za-m') GUEST_TWEAKS="-device isa-applesmc,osk=${OSK} -global kvm-pit.lost_tick_policy=discard" disk="64G" NET_DEVICE="vmxnet3"