]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
setup.sh: Use test instead of [.
authorSimon Ruderich <simon@ruderich.org>
Mon, 15 Oct 2012 19:04:34 +0000 (21:04 +0200)
committerSimon Ruderich <simon@ruderich.org>
Mon, 15 Oct 2012 19:04:34 +0000 (21:04 +0200)
Also fix a comparison, `id -u` is a number.

setup.sh

index 305c0931124929e42416dec7ef0574f97b12c205..aa323acd2be93d457c4ca26b8fd921fe11d64394 100755 (executable)
--- a/setup.sh
+++ b/setup.sh
@@ -83,7 +83,7 @@ if test -z "$use_256colors"; then
 fi
 # Some options are only necessary when running as root. They are marked as
 # "(ROOT)".
-if [ x`id -u` != x0 ]; then
+if test "`id -u`" -ne 0; then
     echo screenrc: removing root options
     grep -v '(ROOT)' screenrc > screenrc.tmp
     mv screenrc.tmp screenrc
@@ -104,7 +104,7 @@ if installed rxvt; then
 fi
 # Display current battery charge on computers with a battery. Necessary lines
 # are marked as "(BATTERY)".
-if [ ! -d /sys/class/power_supply/BAT0 ]; then
+if test ! -d /sys/class/power_supply/BAT0; then
     echo screenrc: removing battery display
     grep -v '(BATTERY)' screenrc > screenrc.tmp
     mv screenrc.tmp screenrc