码迷,mamicode.com
首页 > 系统相关 > 详细

日常开发中的shell小技巧

时间:2019-05-24 20:59:04      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:phrase   开发   incr   pass   避免   键盘   pre   技巧   命令行   

工具推荐

  • 命令行中很方便的代码统计工具---cloc

模拟生成熵(避免暴力手搓键盘)

sudo rngd -r /dev/urandom  -o /dev/random  -f   

自动输密码的脚本,基于expect

#!/usr/bin/expect
set password "butub"
set files [glob -nocomplain -- ./*.deb]
puts "[llength $files]"
for {set i 0} {$i<[llength $files]} {incr i 1} {
    set fileName [lindex $files $i]
    spawn sudo dpkg-sig --sign builder $fileName
    expect "*Enter passphrase:*"
    send "$password\n"
    puts "$fileName"
}
#interact

git提交时不用输入密码的方法

git config --global credential.helper store

日常开发中的shell小技巧

标签:phrase   开发   incr   pass   避免   键盘   pre   技巧   命令行   

原文地址:https://www.cnblogs.com/bingduoduo/p/10920081.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!