Source

コマンド:
wc -l $(file/usr/bin/* | grep “script” | grep -v perl | cut -d: -f1) | sort

Source

extendattribute.sh
UNIX/LinuxではRWXファイルの中を越えて拡張属性を持つことができる
lsコマンド:
% ls -l WebServer-183.zip
-rw-

Source

コマンド:
% sudo su postgres -c ‘pg_ctl status -D/opt/local/var/db/postgresql84/defaultdb’
結果表示:

Source

ipset.sh

#!/bin/bash
############################IPの設定スクリプト#####################################
###### ...

Source

phoneand.sh

#!/bin/sh

project=””;
username=””;
password=””; ...

Source

##########################バックアップ############################

#!/bin/bash
srcdir=/home
bakdir=/tmp/

Source

#!/bin/bash
direc=$(pwd)
targetpath=/usr/tmp
OLDIFS=$IFS
IFS=:
for path in $( find $direc -type d ...

Source

ファイル名:jdk.sh
中身:
#!/bin/bash
find “$PWD” -type f \( -iname ‘*.bin’ \) -print0 | x ...

Source

#!/bin/sh

set -e
echo “libcurlをコンパイルする…”
cd curl-7.23.1
chmod u+x configure
. ...

Source

ファイル名:pgprocess.sh
中身:
@echo off
mode con cols=113 lines=15 &color 9f
cls
echo.
echo プログ ...

Source

コマンド:
mysqladmin -u root shutdown

Source

vim/etc/sudoers
一行目を追加する

ユーザ名 ALL=(ALL) ALL

Source

ping.sh
中身:
#!/bin/sh
#
#fileName:ping.sh
#
if test $# -eq 0
then
echo “IPアドレスを ...

Source

ipget.sh

IPS=($(ifconfig | grep ‘inet addr:’ | awk -F'’ ‘{print $13}’ \
| egr ...

Source

ファイル名:privateip.sh
中身:

#!/bin/bash
##IPアドレスはプライベートかどうかを判断する
## $1 IPアドレス
## リターン: 0プライベートIP, ...

Source

ファイル:rootyn.sh
中身:
if ; then
echo “このスクリプトはrootとして実行する必要がある” 1>&2
exit 1
fi ...