간단한 쉘스크립트들..

nonots의 이미지

서버 뒤지다가
옛날에(?) 만들어 둔 간단한 작업용 쉘스크립트를 발견하고..
기념삼아(?) 저장해 둔다..
..
이건 한 파일 안에서 단어 치환하는거.. 별거아니다..

[root@home4 bin]# cat ssdd
#!/bin/sh
if [ -z $1 ] ; then
        echo "사용법 : `basename $0` [이전단어] [새단어] [파일]"
        exit
fi
source="$1"
dest="$2"
file="$3"
file2="temp$$"
sed -e "s|$1|$2|g" $file > $file2
mv -f $file2 $file
rm -f $file2
[root@home4 bin]#

..

이건 서버디렉토리 포함해서 여러파일들에서 검색..
이것도 지금 생각해 보니 더 간단하게 가능할거 같다..

[root@home4 bin]# cat ffgg
#!/bin/sh
[ ! $1 ] && \
( echo "사용법 : `basename $0` [포함단어]" ; exit)
 
find . -type f | xargs -i grep -H "$*" {}
[root@home4 bin]#

..

이건 expect 이용한건데 나름 유용하다..

[root@home4 bin]# cat tall2
#!/usr/bin/expect  -f
 
set timeout 10
set rpass "?alalf#11"
set fname [lindex $argv 0 ]
 
spawn scp $fname edu:/
expect -nocase "pass"
send "$rpass\n"
interact
exit 0
[root@home4 bin]#

..

이것도 ftp 로 자동 백업..

[root@home4 bin]# cat spa_autoftp
#!/bin/sh
# 소스 백업
db_dir=/home/backup/db
source_dir=/home/backup/source
db_name=`ls -1t $db_dir | head -1`
source_name=`ls -1t $source_dir | head -1`
host=211.111.111.11
user=backup
pass=spabackup
 
cd $db_dir
if [ -f $db_name ] ; then
        ftp -i -n <<QQQ
        open $host
        user backup spabackup
        cd ~/db
        bin
        put $db_name
        bye
QQQ
fi
 
cd $source_dir
if [ -f $source_name ] ; then
        ftp -i -n <<QQQ
        open $host
        user backup spabackup
        cd ~/source
        bin
        put $source_name
        bye
QQQ
fi
[root@home4 bin]#

그리고
vi 에디터 사용시
vi + -c ":set nu" aaa.txt
하면 aaa.txt 파일의 마지막에서 .. 줄넘버 보이면서 편집시작.

File attachments: 
첨부파일 크기
Plain text icon bada_admin.sh_.txt9.75 KB

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.