摘要:
在Windows下操作sqlite数据库 一、确保所在Windows已经安装sqlite3 1.1 Win+R 输入cmd打开命令窗口 ``` # 输入 sqlite3 version ``` 显示如下提示则表示已经安装,且能正常使用 ![image](https://img2023.cnblogs 阅读全文
摘要:
用NTP命令举例说明 脚本如下: #!/bin/bash #echo " start " resp=$(timedatectl list-timezones)#要执行的命令,并将命令结果赋值给变量 #echo -e $resp | sed "s/ /\n/g"#可以对结果变量进行处理,想要的操作 d 阅读全文
摘要:
Sqlite3官方网站: https://www.sqlite.org/cli.html 一、编写sql文件 update_test_one.sql ``` insert into test_one (id,name,sex,age) values('1','zhangsan','男',18); ` 阅读全文
摘要:
1.问题:Cron expression must consist of 6 fields (found 7 in “0/5 * * * * ? *“) @Scheduled(cron = "0/5 * * * * ? *") 2.原因:年的项1099~2099年,为默认。因此只需要6 个。 3.解 阅读全文
摘要:
1、动态查看日志 tail -f test.log 2、查看日志末 n 行 tail -n 100 test.log 3、查看某某进程 root@gNB:~$ ps -ef | grep java root@gNB:~$ ps -aux | grep java root 8699 0.1 3.0 2 阅读全文
摘要:
问题:bin/sh^M: bad interpreter: No such file or directory 原因:.sh脚本在windows系统下用记事本文件编写的。不同系统的编码格式引起的。 解决方法:修改.sh文件格式 (1)使用vi工具 vi test.sh (2)利用如下命令查看文件格式 阅读全文