diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2019-11-27 16:14:25 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2019-11-27 16:14:25 +0100 |
commit | 729aa38070f2dcf450ee682997f567b135dcdded (patch) | |
tree | 15f0dbd5501bf0b956453638491ae21297e63887 | |
parent | Removed useless functions (diff) | |
download | arch-installer-729aa38070f2dcf450ee682997f567b135dcdded.tar.gz arch-installer-729aa38070f2dcf450ee682997f567b135dcdded.tar.bz2 arch-installer-729aa38070f2dcf450ee682997f567b135dcdded.tar.xz arch-installer-729aa38070f2dcf450ee682997f567b135dcdded.tar.zst arch-installer-729aa38070f2dcf450ee682997f567b135dcdded.zip |
Some /dev/null
-rwxr-xr-x | joes-arch-install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/joes-arch-install.sh b/joes-arch-install.sh index e3824dc..9fe2b68 100755 --- a/joes-arch-install.sh +++ b/joes-arch-install.sh @@ -106,7 +106,7 @@ components to install:" 10 50 3 \ } jo_get_disk() { - rm -f blkfile + rm -f blkfile > /dev/null dn=$(lsblk | grep -c disk) id=1 while [[ $dn != 0 ]]; do @@ -120,7 +120,7 @@ awk '{print $1"-------("$4")";}' | sed -n "$id"p) " >> blkfile $(cat blkfile)\ 3>&1 1>&2 2>&3 3>&-) drv=$(lsblk | grep disk | awk '{print $1}' | sed -n "$sel"p) - rm -f blkfile + rm -f blkfile > /dev/null } jo_get_swap_size() { |