怎样让脚本到文件夹里
1. 按键精灵怎么导入脚本
按键精灵导入脚本需要把脚本拉取到按键精灵主页面。
按键精灵导入脚本步骤如下所御埋示:
1、在系统桌面点击打开按键精镇亮蚂灵程序。
2. Linux脚本开发中,如何将对应的文件移入对应的文件夹中
用这个就OK了,目录是不会移动的#!/bin/bash
cd /temp && ls >/tmp/file
while read line; do
if [ -f "$line" ]; then
T=`echo $line |cut -c1-3`
case $T in
abc) mv "$line" /ABC ;;
abb) mv "$line" /ABB ;;
acb) mv "$line" /ACB ;;
*) echo -e "$line \t\t\t Do nothing"
esac
else echo -e "$line \t\t\t The directory is not moving"
fi
done </tmp/file
rm -rf /tmp/file
3. SHELL脚本修改文件名移动到指定文件夹
简单的写了一次, 思路如下,
脚本需要放在 test文件夹下
主要是用变量赋值分割文件名, 按照-的前后来分割
#################################
#!/bin/bash
mkdir 'ralph'
mkdir 'bessie'
for name in *.bb
do
newName=${name#*-}
q=${name%-*}
newName=${newName%.bb} #加上这句话就把.bb 删了
if [ $q = "ralph" ]; then
mv $name "ralph/$newName"
else
mv $name "bessie/$newName"
fi
done