sshrc VS xxh

Compare sshrc vs xxh and see what are their differences.

sshrc

Bring your .bashrc, .vimrc, etc. with you when you ssh (by cdown)

xxh

🚀 Bring your favorite shell wherever you go through the ssh. Xonsh shell, fish, zsh, osquery and so on. (by xxh)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
sshrc xxh
3 23
195 5,012
- 1.8%
10.0 6.7
over 1 year ago about 1 month ago
Shell Python
MIT License BSD 2-clause "Simplified" License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

sshrc

Posts with mentions or reviews of sshrc. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-11-29.
  • Do yourself a favor: invest time in configuring your shell, tmux, vim, .ssh/config etc...
    5 projects | /r/linuxadmin | 29 Nov 2022
    This sounds a lot like what https://github.com/cdown/sshrc is for
  • Hosting your bash scripts to be accessible from anywhere
    2 projects | /r/bash | 13 Apr 2022
    I use my private fork of this script, that removes a bunch of unnecessary stuff, copies ohmyzsh plugins, sets the proper ZDOTDIR and starts zsh: https://github.com/cdown/sshrc (About 80 of those 100 lines are different for me)
  • Managing dot files (linux) - home dir with .gitignore whitelist, good or bad?
    4 projects | /r/sysadmin | 18 Oct 2021
    ssh() { case "${1}" in (-h|--help) command ssh -h 2>&1 | grep -v "^unknown" printf -- '%s\n' "Overlay options:" printf -- '\t %s\n' "dotfiles: syncs dotfiles to a remote host" \ "nokeys: Forces password based authentication" \ "raw: Runs ssh in its default, noisy state" return 0 ;; (dotfiles) # Inspired by # https://github.com/cdown/sshrc/blob/master/sshrc # https://github.com/fsquillace/kyrat # https://github.com/BarbUk/dotfiles/blob/master/bin/ssh_connect remote_host="${2:?Remote Host not defined}" for dotfile in .bashrc .exrc .inputrc .pwords.dict .vimrc; do if ! [[ -r ~/"${dotfile}" ]]; then printf -- '%s\n' "Local copy of ${dotfile} missing" >&2 continue fi local_sum=$(cksum ~/"${dotfile}" | awk '{print $1}') remote_sum=$(command ssh -q "${remote_host}" cksum "${dotfile}" 2>/dev/null | awk '{print $1}') if [[ "${local_sum}" = "${remote_sum}" ]]; then printf -- '%s\n' "${remote_host}:~/${dotfile} matches the local version" else printf -- '%s\n' "${remote_host}:~/${dotfile} appears outdated, updating..." scp ~/"${dotfile}" "${remote_host}:" || return 1 fi done ;; (nokeys) command ssh \ -o PubkeyAuthentication=no \ -o StrictHostKeyChecking=no \ -q \ "${@:2}" ;; (raw) command ssh "${@:2}" ;; (*) command ssh -o StrictHostKeyChecking=no -q "${@}" ;; esac }

xxh

Posts with mentions or reviews of xxh. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-02-27.

What are some alternatives?

When comparing sshrc and xxh you can also consider the following projects:

kyrat - SSH wrapper script that brings your dotfiles always with you on Linux and OSX

zsh-quickstart-kit - A simple ZSH quickstart for using ZSH, zgenom, oh-my-zsh and a curated list of extra plugins. It is designed to be easy to customize without requiring you to maintain your own fork.

config - Common config files they way I like them.

xxHash - Extremely fast non-cryptographic hash algorithm

tmux - Git version of tmux (updated hourly from sourceforge CVS)

zsh4humans - A turnkey configuration for Zsh

dotfiles - Dotfiles

ohmyzsh - 🙃 A delightful community-driven (with 2,300+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool so that makes it easy to keep up with the latest updates from the community.

dotfiles - My dotfiles, used on archlinux, osx and debian

sshch - Ssh connection manager

yadm - Yet Another Dotfiles Manager

see awesome-ssh - :computer: A curated list of SSH resources.