Record your terminal sessions with a single command.
Automatically save terminal logs to a file after execution.
Easily access and manage your recorded logs.
Record.sh is dedicated to providing a simple and efficient way to record and save terminal activity logs. Our tool is designed for developers, educators, and IT professionals who need to keep track of their terminal sessions and easily share or review them later.
To use Record.sh, you need to have curl
installed on your system. Here are the commands to install curl
on various platforms:
sudo apt update
sudo apt install curl
sudo dnf install curl
sudo pacman -S curl
sudo zypper install curl
sudo emerge -a net-misc/curl
sudo eopkg install curl
sudo apk add curl
sudo xbps-install -S curl
sudo slackpkg install curl
flatpak install flathub org.curl
sudo snap install curl
gem install curl
Once curl
is installed, you can set up Record.sh by injecting the script directly into your .bashrc
or .zshrc
file. Run the following commands:
# For Bash users
curl -s https://record-sh.vercel.app/record.sh >> ~/.bashrc
source ~/.bashrc
# For Zsh users
curl -s https://record-sh.vercel.app/record.sh >> ~/.zshrc
source ~/.zshrc
These commands will download the Record.sh script silently and append it to your .bashrc
or .zshrc
file. The final command reloads the respective configuration file to apply the changes.
To execute Record.sh, use the following command:
record
You can run this command from any directory to execute the script. Ensure that you have the necessary permissions and environment setup to execute it successfully.