If you want to make sure you didn’t go over 79 or 80 characters in a file you can simply run:
#!/bin/bash
grep -Pn '.{80,}' file-to-check
This uses grep’s perl regex option (-P) so we can use the expression .{80,} to find any lines that have >= 80 characters. The -n option prints the line numbers in the output so you can find them easily.
This is from datastorageunit.com’s support section. They provide data storage services over ssh/rsync. There’s no audio, but the author comments in the terminal and has an overview text to the left.
I know its a windows computer in the screen, but its all done on a linux server through ssh.
Here’s a handy little script for your .git/hooks folder…
I’ve been getting into git and along with that, I’ve been trying to be more standards minded. Part of that entails including a LICENSE and README file. The LICENSE file is as ease as: