Skip to content

Instantly share code, notes, and snippets.

@hagiyaki
Created April 15, 2014 16:18
Show Gist options
  • Save hagiyaki/10744984 to your computer and use it in GitHub Desktop.
Save hagiyaki/10744984 to your computer and use it in GitHub Desktop.
引数ディレクトリのmibリネームするやつ
#!/bin/bash
for f in `ls $1/*.txt`
do
name=`grep "DEFINITIONS" $f|grep "BEGIN"|sed -e 's/^[ \t]*//g'|cut -f1 -d" "`
mv $f $1/$name.mib
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment