Tcmd.dev
DEMO
Commands
Terminal Notes
SQL
Demo Mode -
Try Full Version
Command Categories
All Commands
18
File Operations
4
Git Commands
5
Docker
3
Node.js Development
3
System Management
3
+ New Category
Search
Select category
File Operations
Git Commands
Docker
Node.js Development
System Management
Add Commands
High Frequency Commands
ls -la
ls -la /home/user
—
List all files and directories with detailed information
cd ..
cd ../projects
—
Navigate to parent directory
git status
git status --short
—
Show the working tree status
git add .
git add . && git commit
—
Stage all changes for commit
npm start
npm start -- --port 3000
—
Start the development server
Mid Frequency Commands
docker ps
docker ps -a
—
List all Docker containers
git branch
git branch -a
—
List all local and remote branches
npm install
npm install --save-dev
—
Install packages from package.json
chmod 755
chmod 755 script.sh
—
Change file permissions to executable
cp -r
cp -r source/ destination/
—
Copy directory recursively
docker build
docker build -t myapp .
—
Build Docker image from Dockerfile
git merge
git merge feature-branch
—
Merge branch into current branch
Low Frequency Commands
find . -name
find . -name '*.js'
—
Search for files by name pattern
docker-compose up
docker-compose up -d
—
Start services defined in docker-compose.yml
systemctl status
systemctl status nginx
—
Check service status
npm run build
npm run build:prod
—
Build application for production
git rebase
git rebase -i HEAD~3
—
Rebase commits interactively
tar -xzf
tar -xzf archive.tar.gz
—
Extract compressed tar archive