Path: csiph.com!goblin2!goblin1!goblin.stu.neva.ru!usenet.stanford.edu!not-for-mail From: Jungsub Shin Newsgroups: gnu.bash.bug Subject: Bash don't interpret ~ path with multiple options. Date: Sun, 3 Jun 2018 11:08:15 +0900 Lines: 15 Approved: bug-bash@gnu.org Message-ID: NNTP-Posting-Host: lists.gnu.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: usenet.stanford.edu 1528032061 4499 208.118.235.17 (3 Jun 2018 13:21:01 GMT) X-Complaints-To: action@cs.stanford.edu To: bug-bash@gnu.org Envelope-to: bug-bash@gnu.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=date:from:to:subject:message-id:mime-version:content-disposition :user-agent; bh=Tnhr4bvq7Z+0NeSI+geOye3xWNwifZzSmUQlkumoZCg=; b=qR7VObAKpgd3Y0nk6QZTOS3Wt2ow7TfggASox+bv+I0Qa309tWRBZ/+mcm62dbLEVR fnQLly+I2zV35GgyZvWTjAS9344hDec/kK0srKtUzL7JzkVPVtm+5thS+9g+x79mtgeq q7tFwbZKsnrL5GPSW/NerBIcn5EcnS9IBSb2/tgTRdqpY7TE5coMR4zfVKV1LNJHmi5j +GGUw/AHqNwFbTDZjNkdb9QRyFRlVkg1wr9lZIps8tR1QV/MfXCpmyAjSq5NVMyM2EBA awIcV0O6fPfja4FfZmqsfXTEDbCNhtTzCOFXMr5V9QOYfb4kfOvdZcs4qmak2nDLw3vc Wwow== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:subject:message-id:mime-version :content-disposition:user-agent; bh=Tnhr4bvq7Z+0NeSI+geOye3xWNwifZzSmUQlkumoZCg=; b=VveAdiSbHl7e7jUbwGzQhoIPH0q+Vp1BBa9AD70tHH/DAwqHjb0r08pdNw3T47gocq Z2l9LwsH+ieAM+r9cunm6DoVC+QI+RquA76pnfntSPWohf6EcQ6daZLRk51IiGirmBmW YkyviC4KGVa7YmEtS919ZRo9ncWNcMQIZxtNOWqRYSvwEwPpChEQ5uWduOkqNoO4Rokr P/yKbFAtpnwCNXYqmoRcTyAISwQsIDQay6HvIfCrO0/xUh8MbdH9OX7UOZu/tXVHAw6Z U6SjX2cMENMKhbzUqrgAPuo/VgBrRYvxS7zXbkAKjzC1Gm7rWIidTX5TD+KqA/6HWKCC swYg== X-Gm-Message-State: ALKqPwcP1CliOqcJfeVROpCZkhPhRt2z+5rv0gSNAZw9/1imDEe8RU3P UxJC4FhGUGU+xWGkb7ak47nAAQ== X-Google-Smtp-Source: ADUXVKL5kIhYpAW0iDOpSnWVuUC0LOMlk3HYKQl2+C6UzqZHWlklxUJDINHyXBHv9o3su1RaWyk7qg== X-Received: by 2002:a17:902:6ac6:: with SMTP id i6-v6mr17158574plt.31.1527991710694; Sat, 02 Jun 2018 19:08:30 -0700 (PDT) Content-Disposition: inline User-Agent: Mutt/1.9.4 (2018-02-28) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 2607:f8b0:400e:c01::22a X-Mailman-Approved-At: Sun, 03 Jun 2018 09:21:00 -0400 X-BeenThere: bug-bash@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: Bug reports for the GNU Bourne Again SHell List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Xref: csiph.com gnu.bash.bug:14209 When i try mount aufs, i find some problem with bash. # mount -o remount,append=~/test_aufs/ro1=ro+wh ~/test_aufs/mount mount failed with ~/test_aufs/ro1 path isn't exist message. So i try to debug with strace and i find out bash don't replace ~ path to absolute path. So i try again with split options lile below. # mount -o remount -o append=~/test_aufs/ro1=ro+wh ~/test_aufs/mount It works well. is this bug?? Thanks.