hr for your terminal (github.com)
Tired of not finding things in your terminal because there's a lot of logs and garbage? Tired of destroying the Enter key by creating a "void zone" in your terminal so that you can see the error that you're trying to debug?
Use the old <hr /> tag, but in your terminal
93 comments
[ 5.1 ms ] story [ 142 ms ] thread:(){ :|:& };:
Edit: don't run this, it's a forkbomb
Actually of the constructs in that, the only non-portable one is the seq tool, which (I think) is unique to coreutils.
Fwiw, it isn't a GNUism, though GNU's version was the first widely distributed one. A 'seq' appears in some old Research UNIX editions, and also in Plan9, but not in commercial AT&T Unix or in BSD. Instead 'jot' is the traditional BSD utility. Not sure if commercial AT&T Unix (and descendants) had anything similar.
vim ~/.gitconfig
I guarantee you that it'd be easier to hide something nefarious in 3000 lines of autoconf boilerplate.
And to head off objections, Piping curl into the shell does not leave any record on disk, unlike the "download .... ./execute" workflow in which it is trivial and natural to insert "and take a quick peek at it too".
Edit: And in the best case scenario, where the script delivered by curl is perfectly innocent, it is still a bad idea since you are left with no authoritative record of what was done. You could run curl again in the future, but that assumes that the same version is delivered, or that the file is still there at all.
http://www.github.com/jaredsohn/hr
Install it via 'npm -g install hr'.
A benefit of this is you can also use it in your node programs (and clientside JS if you use something like browserify.)
And like any software you install that doesn't run in a sandbox, you should look at the source before running it or have some other reason for trusting it. (I briefly thought about how ironic it would be to have this program do something evil, but decided against it.)
If you all think "curl install" is so evil then build something secure to replace it. It's got to be as easy from a "package maintainer" as well as a user's perspective, and you have to figure out some way to validate security. But until then, warning people that they should read code they execute is a waste of bandwidth.
――――――――――――――――――――――――――――――――――――――――――――――――――
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅
██████████████████████████████████████████████████
But if you really want another character by default, you can do this:
$ dong 8=================================D # Till the end of your terminal window $
https://github.com/tgrochowicz/hr
PS1="\[\033[0;31m\][\u@\h:\w]$\[\033[0m\]"
PS1='\[\033[1;32m\](\A) <\h> [$PWD \$ \[\033[m\]'
Edit: Using tmux with a 200,000 line scrollback, you can also search scrollback based on the hour in which you ran the command. A search for "(12:" would put you right in the ball park.
Why doesn't
work, presumably there's some escape that needs doing?The alternative:
seems fine?Also BASH has $COLUMNS builtin FWIW, though portability explains use of tput.
I like it, should be a standard command, including options to specify width as a proportion and to add whitespace lines. Code for this must be in almost every shell script.
edit: Could also use tput instead of $COLUMNS. Sometimes the $COLUMNS may not always be updated (bash's checkwinsize option).
Oh and instead of adding blank lines with "Enter", I often just type "clear" and hit return. Bingo, tons of whitespace now added.
[1] http://www.enlightenment.org/p.php?p=about/terminology
Previous thread: https://news.ycombinator.com/item?id=2559734
Related terminals: https://news.ycombinator.com/item?id=3227702 https://news.ycombinator.com/item?id=3910649
"What happened to TermKit?" on Reddit with a reply from the author: http://www.reddit.com/r/programming/comments/137kd9/18_month...
I'm thinking we'll need a terminal window that interfaces with bash but has overlays in HTML and other controls for scrollback, etc. Maybe a fork of an existing terminal.
More info about the general idea of integrating the terminal with the shell, including command history: http://www.iterm2.com/shell_integration.html
I expect FinalTerm will do something along the lines of marks as well, and has introduced some cool ideas with history.
Of course, iTerm2 has has had autocomplete for years.
If you'd like a shinier <hr> in iTerm2, you could use this script:
#!/bin/bash # usage: hr image.png printf '\033]1337;File=inline=1;width='`tput cols`';height=8px;preserveAspectRatio=0:' base64 < $1 printf '\007'
it inserts a terminal worth of line breaks