|
发表于 2002-12-19 22:22:21
|
显示全部楼层
呵呵,是个好办法。以前在当前目录想新建一个文件都不行,现在用此方法就好了。我在/root/.gnome2/nautilus-scripts下面新建了如下的文件
New_file然后chmod +x New_file,呵呵,现在右键可以新建文件了:
#!/bin/sh
if [ -f Newfile.txt ]
then
for num in 1 2 3 4 5 6 7 8 9; do
{
if [ -f "Newfile${num}.txt" ]
then
continue
else
{
eval "touch Newfile$num.txt"
break
}
fi
}
done
else
eval "touch Newfile.txt"
fi |
|