diff options
author | LAN-TW <lantw44@gmail.com> | 2011-11-20 21:39:44 +0800 |
---|---|---|
committer | LAN-TW <lantw44@gmail.com> | 2011-11-20 21:39:44 +0800 |
commit | ea9dedd0fb2d5c08dd09eb98474d3e844fc60daf (patch) | |
tree | 25e491b13c3f3597f138dccb7b6e7e451569df30 /bash_include | |
parent | 0a0553c24de2533f41adcd56100f4d24926a67c3 (diff) | |
download | configfile-ea9dedd0fb2d5c08dd09eb98474d3e844fc60daf.tar configfile-ea9dedd0fb2d5c08dd09eb98474d3e844fc60daf.tar.gz configfile-ea9dedd0fb2d5c08dd09eb98474d3e844fc60daf.tar.bz2 configfile-ea9dedd0fb2d5c08dd09eb98474d3e844fc60daf.tar.lz configfile-ea9dedd0fb2d5c08dd09eb98474d3e844fc60daf.tar.xz configfile-ea9dedd0fb2d5c08dd09eb98474d3e844fc60daf.tar.zst configfile-ea9dedd0fb2d5c08dd09eb98474d3e844fc60daf.zip |
bash_include: 產生 screen ACL 設定檔、文字轉 HTML | vimrc: 錯誤訊息放家目錄vimrc-20111120bash_include-20111120
Diffstat (limited to 'bash_include')
-rw-r--r-- | bash_include | 37 |
1 files changed, 36 insertions, 1 deletions
diff --git a/bash_include b/bash_include index 6ab16fa..85b7709 100644 --- a/bash_include +++ b/bash_include @@ -9,7 +9,7 @@ alias stopcolor='PS1=$nocolorprompting' alias ll='ls -l' alias rm='rm -i' -alias cp='cp -i' +alias cp='cp -pi' alias mv='mv -i' alias jobs='jobs -l' alias less='less -RS' @@ -24,6 +24,8 @@ default_tty_setting=`stty -g` alias savetty='default_tty_setting=`stty -g`' alias resetty='stty $default_tty_setting' +alias sg='sudo -g' + # Function function compile_all () @@ -68,6 +70,37 @@ function compile_all () } +function convert_to_html () +{ + while [ "$1" '!=' '' ] + do + for i in "$1" + do + vim $i -c 'set background=dark' \ + -c 'highlight PreProc ctermfg=darkcyan' \ + -c "$BEFORE_CONVERT_TO_HTML" \ + -c TOhtml \ + -c :w \ + -c :qa + done + shift + done +} + +function mkscreenacl () +{ + PERMIT_COMMAND="select windowlist other meta detach reset hardcopy info redisplay lastmsg next prev xon xoff windows suspend help colon copy paste writebuf readbuf displays stuff attach" + while [ "$1" '!=' '' ] + do + for i in $PERMIT_COMMAND + do + echo "aclchg $1 +x $i" + done + echo "aclchg $1 -rw \"#?\"" + shift + done +} + # Starting doing something startcolor @@ -78,3 +111,5 @@ bind '"\e[A":history-search-backward' bind '"\e[B":history-search-forward' shopt -s histappend + +# ~/check_dmesg.sh 5 & |