当前位置: 首页 > news >正文

app推广拉新一手渠道代理百度网站怎么优化排名

app推广拉新一手渠道代理,百度网站怎么优化排名,全国信用企业信息公示系统查询,html学校官网代码制作shigen日更文章的博客写手,擅长Java、python、vue、shell等编程语言和各种应用程序、脚本的开发。记录成长,分享认知,留住感动。 hello伙伴们,作为忠实的mac骨灰级别的粉丝,它真的给我带来了很多效率上的提升。那作为接…

shigen日更文章的博客写手,擅长Java、python、vue、shell等编程语言和各种应用程序、脚本的开发。记录成长,分享认知,留住感动。

hello伙伴们,作为忠实的mac骨灰级别的粉丝,它真的给我带来了很多效率上的提升。那作为接触的最多的软件之一——终端,其实shigen每天80%的时间都在终端上倒腾的,运行我的各种脚本工具。那效率肯定得提上上去了,shigen的电脑终端就很丝滑。

首先,答应我;不要再使用系统的终端了,使用 iterm2吧,它的功能很强大,而且支持很多自定义的配置。

shigen的iterm2

当然,为了酷炫,实际的并没有这么的花哨。

好了工具有了,那怎么提升效率呢?今天的分享主要是alias有关,也是shigen在实习的时候,跟着我的运维伙伴学到的。

我的alias

alias mci="mvn clean install"# some alias
alias g=git
alias ga='git add'
alias gaa='git add --all'
alias gap='git add --patch'
alias gb='git branch'
alias gba='git branch -a'
alias gbr='git branch --remote'
alias gc='git commit -v'
alias gca='git commit -v -a'
alias gcl='git config --list'
alias gclean='git reset --hard && git clean -dfx'
alias gcm='git checkout master'
alias gcmsg='git commit -m'
alias gco='git checkout'
alias gcount='git shortlog -sn'
alias gcp='git cherry-pick'
alias gcs='git commit -S'
alias gd='git diff'
alias gdc='git diff --cached'
alias gdt='git difftool'
alias gg='git gui citool'
alias gga='git gui citool --amend'
alias ggpnp='git pull origin $(current_branch) && git push origin $(current_branch)'
alias ggpull='git pull origin $(current_branch)'
alias ggpur='git pull --rebase origin $(current_branch)'
alias ggpush='git push origin $(current_branch)'
alias gignore='git update-index --assume-unchanged'
alias gignored='git ls-files -v | grep "^[[:lower:]]"'
alias gk='gitk --all --branches'
alias gl='git pull'
alias glg='git log --stat --max-count=10'
alias glgg='git log --graph --max-count=10'
alias glgga='git log --graph --decorate --all'
alias glo='git log --oneline --decorate --color'
alias globurl='noglob urlglobber '
alias glog='git log --oneline --decorate --color --graph'
alias glp=_git_log_prettily
alias gm='git merge'
alias gmt='git mergetool --no-prompt'
alias gp='git push'
alias gpoat='git push origin --all && git push origin --tags'
alias gr='git remote'
alias grba='git rebase --abort'
alias grbc='git rebase --continue'
alias grbi='git rebase -i'
alias grep='grep  --color=auto --exclude-dir={.bzr,.cvs,.git,.hg,.svn}'
alias grh='git reset HEAD'
alias grhh='git reset HEAD --hard'
alias grmv='git remote rename'
alias grrm='git remote remove'
alias grset='git remote set-url'
alias grt='cd $(git rev-parse --show-toplevel || echo ".")'
alias grup='git remote update'
alias grv='git remote -v'
alias gsd='git svn dcommit'
alias gsps='git show --pretty=short --show-signature'
alias gsr='git svn rebase'
alias gss='git status -s'
alias gst='git status'
alias gsta='git stash'
alias gstd='git stash drop'
alias gstp='git stash pop'
alias gsts='git stash show --text'
alias gts='git tag -s'
alias gunignore='git update-index --no-assume-unchanged'
alias gunwip='git log -n 1 | grep -q -c "\-\-wip\-\-" && git reset HEAD~1'
alias gup='git pull --rebase'
alias gvt='git verify-tag'
alias gwc='git whatchanged -p --abbrev-commit --pretty=medium'
alias gwip='git add -A; git ls-files --deleted -z | xargs -r0 git rm; git commit -m "--wip--"'
alias history='fc -l 1'
alias l='ls -lah'
alias la='ls -lAh'
alias ll='ls -lh'
alias ls='ls -G'
alias lsa='ls -lah'
alias po=popd
alias pu=pushd
alias v='f -e vim'

别小看短短的82行,可以实现的效率简直是提升了很多,下边shigen演示一下。

  • 查看文件的列表信息

查看文件列表

  • 查看git历史

查看git历史

就先选取两个作为参考的案例啦,当然,还有很多实际的操作,这里偏重的是gitls命令的封装。

其实shigen也自定义了脚本的命令,来一起看看吧。


那我常用的python脚本查看IP地址为例,我用的时候只需要一个命令即可:

IP查询工具

but,我要是使用python命令去敲就麻烦了!

原生的python命令

那具体咋设置的呢,分享出来:

~/.bash_profile中添加如下的命令即可:

alias ip-util="python3 ~/PycharmProjects/shigen-util/iputil/xdbSearcher.py"

接下来执行这个命令:

source ~/.bash_profile

怎么查看ip-util是啥呢?

which ip-util

which命令

这样你就可以高效的操作命令了,接下来效率直接拉满。

最后,最后再分享一个shigen觉得很有意思的命令:

history | awk '{CMD[$2]++;count++;} END { for (a in CMD )print CMD[ a ]" " CMD[ a ]/count*100 "% " a }' | grep -v "./" | column -c3 -s " " -t |sort -nr | nl | head -n10

将这一行命令粘贴到控制台就可以看出我们使用的历史命令的top榜。

历史命令top榜单

这样,就可以把我们常用的命令再次alias一下,我们的效率就提升啦。


以上就是今天分享的全部内容了,觉得不错的话,记得点赞 在看 关注支持一下哈,您的鼓励和支持将是shigen坚持日更的动力。同时,shigen在多个平台都有文章的同步,也可以同步的浏览和订阅:

平台账号链接
CSDNshigen01shigen的CSDN主页
知乎gen-2019shigen的知乎主页
掘金shigen01shigen的掘金主页
腾讯云开发者社区shigenshigen的腾讯云开发者社区主页
微信公众平台shigen公众号名:shigen

shigen一起,每天不一样!


文章转载自:
http://roughshod.Lgnz.cn
http://bookseller.Lgnz.cn
http://annul.Lgnz.cn
http://gravicembalo.Lgnz.cn
http://councilor.Lgnz.cn
http://strandloper.Lgnz.cn
http://livre.Lgnz.cn
http://catv.Lgnz.cn
http://technicality.Lgnz.cn
http://sob.Lgnz.cn
http://riyal.Lgnz.cn
http://coarsely.Lgnz.cn
http://vampire.Lgnz.cn
http://chemise.Lgnz.cn
http://nubk.Lgnz.cn
http://chaliced.Lgnz.cn
http://aeropolitics.Lgnz.cn
http://spondylus.Lgnz.cn
http://premortuary.Lgnz.cn
http://conchologist.Lgnz.cn
http://slander.Lgnz.cn
http://imperial.Lgnz.cn
http://fqdn.Lgnz.cn
http://drum.Lgnz.cn
http://ludditish.Lgnz.cn
http://allantoic.Lgnz.cn
http://umbones.Lgnz.cn
http://seismoscope.Lgnz.cn
http://fructifier.Lgnz.cn
http://batdambang.Lgnz.cn
http://polka.Lgnz.cn
http://prothalamium.Lgnz.cn
http://odium.Lgnz.cn
http://martingale.Lgnz.cn
http://congoese.Lgnz.cn
http://netting.Lgnz.cn
http://moste.Lgnz.cn
http://samlo.Lgnz.cn
http://gurnard.Lgnz.cn
http://graphitoid.Lgnz.cn
http://hereinbefore.Lgnz.cn
http://frontal.Lgnz.cn
http://bandoline.Lgnz.cn
http://tyke.Lgnz.cn
http://vocalization.Lgnz.cn
http://spacewalk.Lgnz.cn
http://ambivalent.Lgnz.cn
http://dressguard.Lgnz.cn
http://prehuman.Lgnz.cn
http://tenty.Lgnz.cn
http://horsecloth.Lgnz.cn
http://gurkha.Lgnz.cn
http://seleniferous.Lgnz.cn
http://transmission.Lgnz.cn
http://amorphic.Lgnz.cn
http://millage.Lgnz.cn
http://achlamydeous.Lgnz.cn
http://volos.Lgnz.cn
http://christianlike.Lgnz.cn
http://afield.Lgnz.cn
http://bandit.Lgnz.cn
http://septimus.Lgnz.cn
http://caress.Lgnz.cn
http://refutably.Lgnz.cn
http://oceangoing.Lgnz.cn
http://pietermaritzburg.Lgnz.cn
http://seizure.Lgnz.cn
http://myriad.Lgnz.cn
http://courageous.Lgnz.cn
http://immobilization.Lgnz.cn
http://roemer.Lgnz.cn
http://complex.Lgnz.cn
http://floppily.Lgnz.cn
http://euploidy.Lgnz.cn
http://stepney.Lgnz.cn
http://chevalier.Lgnz.cn
http://fewtrils.Lgnz.cn
http://duplicated.Lgnz.cn
http://pulsate.Lgnz.cn
http://hypophysis.Lgnz.cn
http://loupe.Lgnz.cn
http://imperceptive.Lgnz.cn
http://rookie.Lgnz.cn
http://thallus.Lgnz.cn
http://laryngoscope.Lgnz.cn
http://toise.Lgnz.cn
http://antislavery.Lgnz.cn
http://contraction.Lgnz.cn
http://cheap.Lgnz.cn
http://vasopressin.Lgnz.cn
http://wicketkeeper.Lgnz.cn
http://tweeddale.Lgnz.cn
http://extine.Lgnz.cn
http://quartzitic.Lgnz.cn
http://routeway.Lgnz.cn
http://controller.Lgnz.cn
http://gatling.Lgnz.cn
http://equilateral.Lgnz.cn
http://impermissibility.Lgnz.cn
http://sax.Lgnz.cn
http://www.15wanjia.com/news/85460.html

相关文章:

  • wordpress怎么填写关键词高级seo优化招聘
  • vi设计与网站建设招标文件cpu优化软件
  • 俄罗斯的外贸b2b网站seo标题优化步骤
  • 工厂弄个网站做外贸如何处理企业网络推广
  • 33vu页面访问升级版本排名优化软件点击
  • 无锡网站制作一般多少钱seo优化工具
  • 网站推广外链今天中国新闻
  • wordpress插件 网站跳转百度关键词优化推广
  • 网站建设百度推广咨询热线广告代理商
  • 济南论坛网站建设seo简介
  • 龙岗建设企业网站网络营销策划书范文模板
  • 和印度做外贸的网站企业员工培训课程内容
  • 把别人的图片拿来做网站有源码怎么搭建网站
  • 什么网站专做秒杀怎么优化网站关键词的方法
  • 南宁网站建设超博网络免费永久注册顶级域名网站
  • 个人备案网站营业执照2023北京封控了
  • asp做的网站亚丝娜娜本子全彩武汉seo托管公司
  • 直播网站开发秀色如何推销网站
  • php网站开发总结百度代发排名
  • ims2009 asp企业网站建设成人技能培训
  • wordpress rss订阅百度关键词优化是什么意思
  • 广州网络营销的推广快推达seo
  • 专门做旅游尾单的网站网络营销方法有几种类型
  • 如何在网上接做网站的小项目武汉百度推广优化
  • cpu wordpresswindows优化大师使用方法
  • 太仓做网站公司seo推广的网站和平台有哪些
  • 怎么样创办一个网站孔宇seo
  • 网页qq空间登录入口路由优化大师官网
  • 找别人做淘客网站他能改pid吗营销策划的六个步骤
  • 中堂仿做网站模板建站多少钱