minus-square0day@programming.devtolinux4noobs@programming.dev•How to read terminal output from the beginning?linkfedilinkarrow-up1·5 months agoYou could pipe it to less. somecommand | less Or if you want only the beginning or end of output, use head or tail. linkfedilink
minus-square0day@programming.devtoOpensource@programming.dev•The open secret of open washing – why companies pretend to be open sourcelinkfedilinkarrow-up1·7 months agoLike when everyone “went green” linkfedilink
minus-square0day@programming.devtoLinux@programming.dev•Linus Torvalds Asks Kernel Developers To Write Better Git Merge Commit Messageslinkfedilinkarrow-up14·8 months agoGood commit messages always help me find the bugs I introduced. linkfedilink
You could pipe it to
less
.somecommand | less
Or if you want only the beginning or end of output, use
head
ortail
.