码迷,mamicode.com
首页 >  
搜索关键字:bash    ( 15235个结果
linux shell命令之非交互式Shell脚本
vi no_interaction_script1.sh #!/bin/bash #提示用户该脚本3秒后退出echo "This script will quit after 3 seconds. " #计时3s sleep 1echo -n "."sleep 1echo -n "."sleep 1 ...
分类:系统相关   时间:2021-04-13 12:16:49    阅读次数:0
linux shell之数组的特殊用法
vi string_array.sh #!/bin/bash city=(Nanjing Atlanta Massachusetts Marseilles) #建立一个简单的数组echo "Extracting Substring" #演示抽取子串功能echo ${city[*]:0} #抽取整个数 ...
分类:编程语言   时间:2021-04-13 12:08:59    阅读次数:0
[Oracle工程师手记] 通过 lsof 命令查找oracle client 端和 server 端进程
通过 lsof 命令,可以找到 Oracle 的 client 端 和 server 端的进程。 例如,我从远端连接到 oracle 数据库: -bash-4.1$ sqlplus sys/oracle@my19c as sysdba SQL*Plus: Release 12.2.0.1.0 Pro ...
分类:数据库   时间:2021-04-10 13:37:55    阅读次数:0
OpenWrt创建新用户及搭建samba服务器
1.安装依赖的软件包 opkg install shadow-common opkg install shadow-useradd 2、搭建samba服务器 opkg update opkg install samba36-server opkg install luci-app-samba opk ...
分类:其他好文   时间:2021-04-10 13:08:52    阅读次数:0
vsftpd命令
1、从远程ftp服务器下载文件的命令格式: get 远程ftp服务器上当前目录下要下载的文件名 [下载到本地机器上当前目录时的文件名],如: 1 get nmap_file [nmap] 意思是把远程ftp服务器下的文件nmap_file下载到本地机器的当前目录下,名称更改为nmap。 带括号表示可 ...
分类:其他好文   时间:2021-04-10 13:02:31    阅读次数:0
树莓派WIFI
树莓派WIFI设置 在“开始使用树莓派”中,我们在boot根目录下创wpa_supplicant.conf文件,实现了第一次连接wifi。以后开机后,树莓派会自动连接那个wifi。如果想要连接多个wifi需要修个如下配置。 sudo vim /etc/wpa_supplicant/wap_suppl ...
分类:其他好文   时间:2021-04-09 13:40:31    阅读次数:0
俄罗斯方块-shell脚本写的,学习学习
#!/bin/bash APP_NAME="${0##*[\\/]}" APP_VERSION="1.0" #颜色定义 iSumColor=7 #颜色总数 cRed=1 #红色 cGreen=2 #绿色 cYellow=3 #××× cBlue=4 #蓝色 cFuchsia=5 #紫红色 cCyan ...
分类:系统相关   时间:2021-04-09 13:30:17    阅读次数:0
树莓派4B搭建宝塔Linux面板
树莓派4B搭建宝塔Linux面板 树莓派4B搭建宝塔Linux面板 提示:本次使用的树莓派为4B 4GB 使用的系统为Ubuntu 2004 LTS,只测试了这个版本 文章目录 树莓派4B搭建宝塔Linux面板一、树莓派安装系统1.下载工具包及安装2.进行wifi配网3.启动树莓派 二、Ubuntu ...
分类:系统相关   时间:2021-04-08 13:56:37    阅读次数:0
WSL2作为phpstorm/ide 的默认终端
通过这篇文章将wsl设置为默认的终端:Windows Subsystem for Linux Installation Guide for Windows 10 1、查看wsl子系统: PS C:\WINDOWS\system32> .\wslconfig.exe /list 适用于 Linux 的 ...
分类:Web程序   时间:2021-04-08 13:04:23    阅读次数:0
在centos7.5中解决bash: pip:command not find 问题
在centos7.5中解决bash: pip:command not find 问题 [root@localhost ~]# python get-pip.py Hi there! The URL you are using to fetch this script has changed, and ...
分类:其他好文   时间:2021-04-08 13:04:02    阅读次数:0
15235条   上一页 1 ... 13 14 15 16 17 ... 1524 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!