码迷,mamicode.com
首页 >  
搜索关键字:sed 替换字符串    ( 10225个结果
VS 替换字符串的值
string str="我有一只狗"; str.strReplace("狗","猫"); //展示str "我有一只猫" ...
分类:其他好文   时间:2021-01-30 12:22:58    阅读次数:0
解决spark-submit的There is insufficient memory for the Java Runtime Environment to continue.(老顽固问题) failed; error='Cannot allocate memory' (errno=12)
Q:第一次提交wordcount案例,OK,一切正常。再次提交,出现下述错误。完整错误粘贴如下: 21/01/27 14:55:48 INFO spark.SecurityManager: Changing modify acls groups to: 21/01/27 14:55:48 INFO ...
分类:编程语言   时间:2021-01-28 11:56:52    阅读次数:0
批量替换端口
批量将管理端口17001变更成18001,如下脚本: [root@pxc1 ~]# grep -Rl "17001" /weblogic/web11g36|xargs sed -i 's/17001/18001/g' ...
分类:其他好文   时间:2021-01-28 11:38:08    阅读次数:0
烽火传递(单调队列优化DP)
原题链接 dp[i]表示信息传递到第i个烽火台时花费的最少代价 dp[i]=min(dp[j])+a[i];i-m<=j<=i-1 单调队列优化 const int maxn=1e6+7; int a[maxn],n,m; int dp[maxn],q[maxn]; int main(){ n=re ...
分类:其他好文   时间:2021-01-21 10:59:48    阅读次数:0
linux的用户权限
文件權限 什么是文件权限: 我们对当前文件可以干什么 看 写入 删除 执行 root 拥有最高执行权限 一个权限可以控制它 普通文件的默认权限 我们创建 vim touch echo后默认的权限 rw-r--r-- r 4 read 读取文件 cat less more vim sed w 2 wr ...
分类:系统相关   时间:2021-01-21 10:55:18    阅读次数:0
Kubeadm 部署
1.环境如下 主机名 IP 角色 2.部署前准备 1.环境准备,所有节点分别配置。 关闭防火墙: $ systemctl stop firewalld $ systemctl disable firewalld 关闭 selinux: $ sed -i 's/enforcing/disabled/' ...
分类:其他好文   时间:2021-01-20 12:03:09    阅读次数:0
AWS docs notes
DynamoDB supports two types of primary keys: Partition key: A simple primary key, composed of one attribute known as the partition key. Attributes in ...
分类:其他好文   时间:2021-01-19 12:30:09    阅读次数:0
CentOS yum配置国内源
参考网页 https://blog.csdn.net/xiaojin21cen/article/details/84726193 (1)、首先备份 CentOS-Base.repo mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentO ...
分类:其他好文   时间:2021-01-19 12:28:46    阅读次数:0
Redis安装
wget http://download.redis.io/released/redis-4.0.11.tar.gz tar -zxvf redis-4.0.11.tar.gz mv redis-4.0.11 redis mv redis /usr/local/redis cd /usr/local ...
分类:其他好文   时间:2021-01-18 10:53:30    阅读次数:0
【Azure Developer】使用Postman获取Azure AD中注册应用程序的授权Token,及为Azure REST API设置Authorization
Azure Active Directory (Azure AD) is Microsoft’s cloud-based identity and access management service, which helps your employees sign in and access res ...
分类:Windows程序   时间:2021-01-15 12:02:00    阅读次数:0
10225条   上一页 1 ... 11 12 13 14 15 ... 1023 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!