From b4d858cea81ac23f15abe6895b3c055e4bc89be6 Mon Sep 17 00:00:00 2001 From: Sebastian Zagrodzki Date: Fri, 14 Apr 2000 11:07:22 +0000 Subject: [PATCH 1/1] - removed POSIX-uncompatible &> redirection :) Changed files: etc/profile.d/tmp-dir.sh -> 1.3 --- etc/profile.d/tmp-dir.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/profile.d/tmp-dir.sh b/etc/profile.d/tmp-dir.sh index 7a86b53..0f04e83 100644 --- a/etc/profile.d/tmp-dir.sh +++ b/etc/profile.d/tmp-dir.sh @@ -1,4 +1,4 @@ if [ ! -d ~/tmp ]; then - mkdir -p ~/tmp &> /dev/null + mkdir -p ~/tmp > /dev/null 2>&1 chmod -f og-rwx ~/tmp fi -- 2.44.0