首页
苏兮影视
随笔记
壁纸
更多
直播
时光轴
友联
关于
统计
Search
1
软件添加id功能按钮
708 阅读
2
v2ray节点搭建
507 阅读
3
typecho非常有特色的模块
460 阅读
4
QQxml消息卡片生成源码
421 阅读
5
Linux下提权常用小命令
366 阅读
谈天说地
建站源码
经验教程
资源分享
动漫美图
登录
Search
标签搜索
java
flutter
springboot
rust
安卓
linux
vue
docker
joe
快捷键
git
fish shell
maven
redis
netty
dart
groovy
js
设计模式
rpc
尽意
累计撰写
95
篇文章
累计收到
38
条评论
首页
栏目
谈天说地
建站源码
经验教程
资源分享
动漫美图
页面
苏兮影视
随笔记
壁纸
直播
时光轴
友联
关于
统计
搜索到
2
篇与
的结果
Fish shell 的常用命令
cd:切换当前工作目录。示例:cd /path/to/directoryls:列出当前目录的文件和子目录。示例:lspwd:显示当前工作目录的路径。示例:pwdcat:显示文件的内容。示例:cat filename.txttouch:创建一个新文件。示例:touch newfile.txtrm:删除文件或目录。示例:rm filename.txt 或 rm -r directorycp:复制文件或目录。示例:cp source_file.txt destination_file.txt 或 cp -r source_directory destination_directorymv:移动文件或目录,或者重命名文件。示例:mv old_name.txt new_name.txt 或 mv file.txt /path/to/directorymkdir:创建一个新目录。示例:mkdir new_directoryhistory:显示之前输入过的命令历史记录。示例:historyman:查看命令的帮助页面。示例:man command_namegrep:搜索文件中的文本模式。示例:grep pattern filename.txtFish shell 和 Linux 的Bash命令基本相同,但是有一些细微的差异。
2023年12月09日
76 阅读
0 评论
2 点赞
2023-12-09
CentOS上安装Fish shell
1.更新软件包索引:运行 sudo yum update 命令以更新软件包索引。2.添加Fish shell存储库:运行以下命令,添加Fish shell的存储库:sudo yum-config-manager --add-repo https://download.opensuse.org/repositories/shells:/fish:/release:/3/CentOS_7/shells:fish:release:3.repo3.安装Fish shell:运行以下命令以安装Fish shell:sudo yum install fish4.启动Fish shell:运行以下命令以启动Fish shell:fish一旦你完成了这些步骤,你就可以开始使用Fish shell了。如果你想将Fish shell设置为默认shell,你可以运行以下命令:chsh -s /usr/bin/fish这个命令会将Fish shell设置为当前用户的默认shell。
2023年12月09日
95 阅读
0 评论
1 点赞