摘要: 命令提示符切换至需要创建项目的目录: 直接在路径输入cmd在按键盘的enter键打开的终端就直接切换到该目录下 (1)输入以下命令: vue create 项目名称 (2)我这里选手动选择,键盘上下按钮,选完后按enter键 (3)我这里选Babel和CSS,键盘上下按钮,选中或取消选中按空格,选完 阅读全文
posted @ 2023-04-17 17:47 鲁班大师智商二百五 阅读(92) 评论(1) 推荐(0)
摘要: #define _CRT_SECURE_NO_WARNINGS #include<stdio.h> int main() { float score; printf("请输入成绩"); scanf("%f", &score); printf("成绩是%f", score); return 0; } 阅读全文
posted @ 2025-04-10 08:42 鲁班大师智商二百五 阅读(4) 评论(0) 推荐(0)
摘要: #include <stdio.h> typedef short int INT16; int main() { short int b = 101; INT16 c = 111; printf("b=%d\n", b); printf("b=%d\n", c); return 0; } 阅读全文
posted @ 2025-04-10 08:40 鲁班大师智商二百五 阅读(6) 评论(0) 推荐(0)
摘要: 使用命令: Set-ExecutionPolicy RemoteSigned -Scope CurrentUser 阅读全文
posted @ 2025-04-02 22:51 鲁班大师智商二百五 阅读(100) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2025-02-21 10:35 鲁班大师智商二百五 阅读(11) 评论(0) 推荐(0)
摘要: [miaojiang@localhost ~]$ sudo ls /root We trust you have received the usual lecture from the local System Administrator. It usually boils down to thes 阅读全文
posted @ 2025-01-09 22:00 鲁班大师智商二百五 阅读(39) 评论(0) 推荐(0)
摘要: [root@localhost ~]# su miaojiang [miaojiang@localhost root]$ env | egrep "USER|MAIL|PWD|LOGNAME" USER=miaojiang MAIL=/var/spool/mail/root PWD=/root LO 阅读全文
posted @ 2025-01-09 21:41 鲁班大师智商二百五 阅读(6) 评论(0) 推荐(0)
摘要: [root@localhost ~]# whoami root [root@localhost ~]# w 21:22:19 up 20 min, 3 users, load average: 0.00, 0.01, 0.01 USER TTY FROM LOGIN@ IDLE JCPU PCPU 阅读全文
posted @ 2025-01-09 21:30 鲁班大师智商二百五 阅读(5) 评论(0) 推荐(0)
摘要: [root@localhost ~]# ls -l /home/ total 0 drwx . 2 liuxin liuxin 62 Jan 8 22:16 liuxin drwx . 2 miaojiang miaojiang 62 Jan 8 22:31 miaojiang [root@loca 阅读全文
posted @ 2025-01-09 09:02 鲁班大师智商二百五 阅读(12) 评论(0) 推荐(0)
摘要: [root@localhost demo]# cat demo1.txt 1 2 3 4 5 6 7 8 9 10 11 [root@localhost demo]# xargs < demo1.txt 1 2 3 4 5 6 7 8 9 10 11 [root@localhost demo]# x 阅读全文
posted @ 2025-01-07 22:22 鲁班大师智商二百五 阅读(6) 评论(0) 推荐(0)
摘要: [root@localhost ~]# find /demo -maxdepth 1 -name "*.txt" /demo/aaa.txt /demo/bbb.txt /demo/c.txt /demo/alex.txt /demo/sort.txt /demo/sort1.txt /demo/i 阅读全文
posted @ 2025-01-07 22:08 鲁班大师智商二百五 阅读(15) 评论(0) 推荐(0)