shellscript

#cat filedel.sh
#!/bin/sh
location=”/var/www/data”
find $location -mtime +5 -type f |xargs rm ...

shellscript

サンプルコード:
#!/bin/bash
# Link: www.sample.com
###
while :
do
Time=`date +%F” “%T.%N`
rx_bef ...

shellscript

サンプルコード
#!/bin/sh
# mysql data backup script
#
# use mysqldump –help,get more detail.
# ...

shellscript

サンプルコード
#!/bin/bash
if ;then
echo “0” >/tmp/down_count
fi
curl -I tomcat-host ...

shellscript

サンプルコード:
# vi check_ip.sh
#!/usr/bin/sh
CheckIPAddr()
{
echo $1|grep “^\{1,3\}\.\(\{1,3\}\. ...

shellscript

サンプルコード:
MACCESS=`date -d yesterday +%Y%m%d`
FILE=”access_$MACCESS.log.tgz”
cd/data/nginx/log ...

shellscript

shellコード:
#!/bin/bash
#useradd andpassword
echo “please input username:”
read name
ec ...

shellscript

shellコード:
#!/bin/bash
FILE=’20161204cft.csv’
MYSQL=’/usr/local/mysql/bin/mysql’ ...

shellscript

方法1
numbers=(122 134 132 154 160 189)

while true
do
index=$(($RANDOM % ${#numbers}))
echo numbe ...

shellscript

参考コード:
#!/bin/bash

HOSTNAME=”XXX.XXX.XXX.157″
PORT=”3306″
USERNAME=”r ...

shellscript

#vi/etc/init.d/mongodo
shellコード:
#!/bin/sh
#
#mongod – Startup script for mongod
#
# ch ...

shellscript

参考コード:
strCtn=”1,2,3,4,5,a”
echo ${strCtn##*,}
echo ${strCtn#*,}
echo ${strCtn%%,*}
e ...

shellscript

1.shellで20桁のランダム文字列を作成する
#!/bin/bash
randstr() {
index=0
str=””
for i in {a..z}; do a ...

shellscript

#vim/etc/init.d/memcached

サンプルコード:
#!/bin/sh
#
# memcached: MemCached Daemon
#
# chkconfig: ...

shellscript

コード下記:

#!/bin/bash
#
# chkconfig: – 95 15
# description: Tomcat start/stop/status script

shellscript

コード下記
echo -e “PID\t\tMem\t\tProc_Name”
for pid in `ls -l/proc | grep ^d | awk ‘{ print $NF ...

shellscript

参考コード:
#/bin/bash
#ファイルパス
quepath=/var/spool/mqueue
#ファイル数
filenum=`ls $quepath|wc -l`
#ファイルを ...

shellscript

参考ソースコード

#!/bin/bash

if ; then
echo “inpuT date is:” $1 “,time is:” $2
da ...