Skip to content

Instantly share code, notes, and snippets.

@patrick-hudson
Last active December 12, 2015 23:03
Show Gist options
  • Save patrick-hudson/fe5ec50a2b11c7411da5 to your computer and use it in GitHub Desktop.
Save patrick-hudson/fe5ec50a2b11c7411da5 to your computer and use it in GitHub Desktop.
#!/bin/bash
USERNAME=$(cat /dev/urandom | tr -dc 'a-z' | fold -w 8 | head -n 1)
mkdir -p /home/$USERNAME/.irssi
useradd $USERNAME
chown -R $USERNAME:$USERNAME /home/$USERNAME
curl -o /home/$USERNAME/config https://gist.github.com/patrick-hudson/d8fd06d0a2126c2808cc/raw/bc5d02feab27bee7fa7df1a6c4d5677bc0e3774b/config
sed -i s/REPLACEME/$USERNAME/g /home/$USERNAME/config
mv /home/$USERNAME/config /home/$USERNAME/.irssi/config
sudo -S -u $uSERNAME -i /bin/bash -l -c 'irssi'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment