On Fri, Jul 25, 2025, 12:02 Stan Marsh <gaze...@xmission.com> wrote: > > I used the following command to check disk usage in ~: > > $ du -sxc ~/* > > Unfortunately, this hung when it hit the directory ~/sshfs_mount, which is > sshfs > mounted to my home dir on some other system. >
When the glob is expanded, $HOME/sshfs_mount ends up being one of the args to `du' so it seems not surprising that the directory is processed. >