• zitrone 🍋
    link
    fedilink
    English
    arrow-up
    1
    ·
    22 days ago

    not only does unrm not exist, the shell expands * to whatever is in the current directory, which is empty because anon just rmd everything

    • zitrone 🍋
      link
      fedilink
      English
      arrow-up
      1
      ·
      22 days ago

      bash is weird

      $ bash -c 'echo e*'
      e*
      $ fish -c 'echo e*'
      fish: No matches for wildcard 'e*'. See `help wildcards-globbing`.
      echo e*
           ^^```
      • zitrone 🍋
        link
        fedilink
        English
        arrow-up
        1
        ·
        22 days ago

        ok just stupid defaults

        $ shopt -s failglob
        $ echo e*
        bash: no match: e*