From 2067a62fdad120faa51c2ab6fedf33d55aec469d Mon Sep 17 00:00:00 2001 From: Iain Patterson Date: Wed, 18 Nov 2009 16:04:21 +0000 Subject: [PATCH] Remove absolute paths from ts. Paths should have been set correctly by shell startup. Leaving them in breaks cross-platform compatibility. --- opt/bin/ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/opt/bin/ts b/opt/bin/ts index 3da2888..74b59f0 100755 --- a/opt/bin/ts +++ b/opt/bin/ts @@ -1,10 +1,10 @@ #!/bin/bash options="-l" -if echo "$LS_OPTIONS" | /bin/grep -- "--time-style=long-iso" &>/dev/null; then - today=$(/bin/date +'%Y-%m-%d') +if echo "$LS_OPTIONS" | grep -- "--time-style=long-iso" &>/dev/null; then + today=$(date +'%Y-%m-%d') options="$options --time-style=long-iso" else - today=$(/bin/date +'%b %e') + today=$(date +'%b %e') fi -/bin/ls $options ${1+"$@"} | /bin/grep "$today [012][0-9]:[0-9][0-9]" +ls $options ${1+"$@"} | grep "$today [012][0-9]:[0-9][0-9]" -- 2.7.4