• @datelmd5sum
      link
      716 days ago

      cat pipeing is safer though.

      foobar > file and your file is gone.

      • @Trail
        link
        216 days ago

        Huh does that actually work? Don’t have a system handy to try it out.

        • @[email protected]
          link
          fedilink
          416 days ago

          showing the output in termux

          storage/documents/programs ro
          > echo puts "hello world" > main.rb
          
          storage/documents/programs ro via rb
          > ls
          c  js  main.rb  python
          
          storage/documents/programs ro via rb
          > < main.rb grep hello
          puts hello world
          
          storage/documents/programs ro via rb
          >
          
        • JackbyDev
          link
          fedilink
          English
          216 days ago

          I think so! I think it’s something like < file works anywhere in the line, not just the end. There may be some specifics about no space when it is the front but I don’t remember lol.