Linux 命令学习模拟器

虚拟 Linux 环境:输入命令实时执行,支持管道、重定向、Tab 补全

Linux Simulatoruser@ainexis
终端
/
bin
boot
dev
etc
home
guest
user
.ssh
documents
downloads
projects
.bash_history
.bashrc
.profile
README.md
lib
lib64
media
mnt
opt
proc
root
run
sbin
srv
sys
tmp
usr
var
user@ainexis:~$

使用说明

支持的功能

  • 40+ 常用命令:文件操作(ls/cd/cat/mkdir/rm/mv/cp/touch)、文本处理(grep/sort/wc/tr)、权限(chmod/chown)、进程(ps/top/kill)、系统(free/df/du/uname)
  • 管道组合:cat file | grep word | wc -lps -ef | grep nginx
  • 重定向:echo "text" > file>> 追加
  • Tab 补全命令与路径,↑↓ 翻命令历史,Ctrl+L 清屏,Ctrl+C 取消输入
  • 模拟完整 Linux 目录树:19 个根目录,/bin 60+ 可执行文件,/etc 常用配置、/var/log 日志等
  • 左侧文件树随命令实时联动,点击目录可展开/收起,点击文件查看内容
  • 全屏模式、明暗主题切换、环境一键重置

试试这些命令

  • ls /bin | head
  • cat /etc/nginx/nginx.conf
  • ps -ef | grep nginx
  • free -h 与 df -h
  • chmod 755 README.md && ls -l
  • find . -name "*.txt"
  • tree projects
  • ping baidu.com
  • history 查看命令历史
  • man grep 查看手册