From 4dd860d4837f53586a79c566247642c837c0c411 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Fri, 4 Jul 2014 21:50:46 +0300 Subject: [PATCH] bashrc & zshrc: run finding of pkcs11so in the background. See #32 which this might fix. --- bashrc | 2 +- zshrc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bashrc b/bashrc index 2880e23a..fbe88b31 100644 --- a/bashrc +++ b/bashrc @@ -489,7 +489,7 @@ alias inxi-install-root="cd /usr/local/bin;\wget -Nc smxi.org/inxi;chmod +x inxi alias inxi-update="inxi -U" # FINEID -pkcs11so=$(find /usr/*lib -name 'opensc-pkcs11.so' 2>/dev/null) +pkcs11so=$(find /usr/*lib -name 'opensc-pkcs11.so' 2>/dev/null&) alias ssh-add-sc="ssh-add -s $opensc-pkcs11.so" alias ssh-add-sc-pub="ssh-add -L" diff --git a/zshrc b/zshrc index 844dd097..edeefcd5 100644 --- a/zshrc +++ b/zshrc @@ -458,7 +458,7 @@ alias inxi-install-root="cd /usr/local/bin;\wget -Nc smxi.org/inxi;chmod +x inxi alias inxi-update="inxi -U" # FINEID -pkcs11so=$(find /usr/*lib -name 'opensc-pkcs11.so' 2>/dev/null) +pkcs11so=$(find /usr/*lib -name 'opensc-pkcs11.so' 2>/dev/null&) alias ssh-add-sc="ssh-add -s $pkcs11so" alias ssh-add-sc-pub="ssh-add -L"