ZeroScroll
A next-gen experience eliminating clicks and scrolls.
⚡️
Fast Load
Stress-free with instant load
🎯
Answer First
Stress-free with immediate results
💎
Minimal
Stress-free with simple design
chmod
→
Permission for SSH private keys (600)
chmod 600 [file] chmod
→
Standard permission for directories/scripts (755)
chmod 755 [target] chmod
→
How to make a file executable
chmod +x [file] chown
→
How to change directory owner recursively
chown -R [user]:[group] [directory] curl
→
How to check HTTP response headers
curl -I [URL] curl
→
How to POST JSON data with curl
curl -X POST -H "Content-Type: application/json" -d '{"key":"value"}' [URL] cp
→
How to copy multiple files at once
cp [file1] [file2]... [dest_dir] df
→
How to check free disk space
df -h cp
→
How to copy files preserving attributes/dates
cp -p [source] [dest] dig
→
How to check DNS records
dig [domain] cp
→
How to copy a directory
cp -r [source] [dest] find
→
How to find recently modified files
find . -mtime -[days] du
→
How to check directory size
du -sh [directory] find
→
How to find files by name
find . -name "[pattern]" grep
→
How to grep case insensitive
grep -i [string] [file] grep
→
How to exclude lines with grep
grep -v [exclude_string] [file] grep
→
How to grep recursively in a directory
grep -r [search_string] . kill
→
How to force kill a process
kill -9 [PID] ip
→
How to check IP address (Linux)
ip addr ln
→
How to create a hard link
ln [source] [new_link_name] lsof
→
Check which process is using a port
lsof -i :[port] mv
→
How to move or rename a file
mv [source] [destination] ln
→
How to create a symbolic link
ln -s [source] [new_link_name] ping
→
How to check network connectivity
ping [host_or_ip] rm
→
How to delete a directory and its contents
rm -rf [directory_name] rm
→
How to delete an empty directory
rm -d [directory_name] ssh
→
SSH connection with specific port
ssh -p [port] [user]@[host] tail
→
How to monitor log files in real-time
tail -f [file] ssh
→
SSH connection using a specific private key
ssh -i [key_file] [user]@[host] ps
→
List all running processes
ps aux tar
→
How to create a tar archive
tar -cvf archive.tar [target] tar
→
How to create a tar.gz
tar -czvf archive.tar.gz [target] tar
→
How to extract tar
tar -xvf filename.tar tar
→
How to extract tar.gz
tar -zxvf filename.tar.gz unzip
→
How to unzip a file
unzip [filename] zip
→
How to zip a directory
zip -r archive.zip [target] netstat
→
How to check network connections and open ports
netstat -an mkdir
→
How to create nested directories
mkdir -p [path/to/dir] git
→
How to stage changes
git add . git
→
How to create and switch to a new branch
git checkout -b [branch_name] git
→
How to list branches
git branch git
→
How to clone a repository
git clone [url] git
→
How to commit changes
git commit -m "[message]" git
→
How to show changes
git diff git
→
How to initialize a Git repository
git init git
→
How to see the commit graph
git log --oneline --graph --all git
→
How to merge a branch
git merge [branch] git
→
How to pull changes from remote
git pull origin [branch] git
→
How to push changes to remote
git push origin [branch] git
→
How to check remote URLs
git remote -v git
→
How to check the status
git status git
→
How to stash changes
git stash git
→
How to switch branches
git switch [branch] git
→
How to change the remote repository URL
git remote set-url origin [new_url]