• 5 Posts
  • 560 Comments
Joined 3 years ago
cake
Cake day: June 7th, 2023

help-circle
  • Say, if phones started creating a 3d map everywhere they went, and you obviously disable it. There will, at some point, be someone who enters your house and unwittingly map it out.

    This isn’t about personal resistance but the futility of it as the general populace neither cares, knows or put any thought into it.

    I use opt out strings in my SSID, blurred the house on gmaps, etc. Last year noticed some random person put it on mapillary, there’s other services that require other optout strings. That’s just scratching the surface.

    Things are happening that I don’t even know about, let alone respond to them.


















  • I just tried your use case, and it did move the files to the correct folder.

    using zsh:

     user@computer  ~  touch test.jpg
     user@computer  ~  touch test2.jpg
     user@computer  ~  mv test.jpg ./Public 
     user@computer  ~  mv test2.jpg $_
     user@computer  ~  ls ./Public 
    test2.jpg  test.jpg
     user@computer  ~  
    

    using bash:

    [user@computer Public]$ mkdir test
    [user@computer Public]$ ls
    test  test2.jpg  test.jpg
    [user@computer Public]$ mv test.jpg ./test
    [user@computer Public]$ mv test2.jpg $_
    [user@computer Public]$ ls
    test
    [user@computer Public]$ ls test/
    test2.jpg  test.jpg
    [user@computer Public]$ 
    

    using bash and full path:

    [user@computer Public]$ ls
    test  test2.jpg  test.jpg
    [user@computer Public]$ mv test.jpg /home/user/Public/test
    [user@computer Public]$ mv test2.jpg $_
    [user@computer Public]$ ls
    test
    [user@computer Public]$ ls test/
    test2.jpg  test.jpg
    [user@computer Public]$ 
    

    What shell are you using? You can check it by using echo $0.

     user@computer  ~  echo $0
    /usr/bin/zsh
    
    [user@computer ~]$ echo $0
    /bin/bash
    

    I can’t reproduce it, even when putting the directory path in quotes, it still simply moved the file.