aboutsummaryrefslogtreecommitdiff
path: root/readline/inputrc
Commit message (Expand)AuthorAgeFilesLines
* Horizontal completion listing not quite rightTom Ryder2013-08-281-3/+0
* Prevent re-completing word from within itTom Ryder2013-08-221-0/+3
* Add comments to ~/.inputrcTom Ryder2013-08-221-7/+33
* Don't echo ^C to the terminalTom Ryder2012-12-221-0/+1
* Trailing slash for tab-completed directoriesTom Ryder2012-10-081-0/+1
* Use positive value for paging limit.Tom Ryder2012-03-051-1/+1
* More Readline conf changes.Tom Ryder2012-03-031-3/+4
* Lazier tab completion.Tom Ryder2012-03-021-0/+4
* Just one <Tab> press for completion. Much nicer.Tom Ryder2012-03-021-0/+1
* To be thorough, may as well store my inputrc.Tom Ryder2012-02-271-0/+2
iteral.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
# Run ssh(1) with an optional command on every host in sls(1df) output
# Use FD3 to keep a reference to the script's stdin for the ssh(1) calls
exec 3<&0
sls | while read -r hostname ; do
    printf 'sra: %s\n' "$hostname"
    ssh -qt -- "$hostname" "$@" <&3 # shellcheck disable=SC2029
done