#!/bin/bash
# This file will fix the cygwin vs linux paths and load programmer's notepad under windows.
# mail : <sandundhammikaperera@gmail.com>
# invokes the GNU GPL, all rights are granted.
# check first parameter is non empty.
# if empty then give a error message and exit.
file=${1:?"Usage: pn filename"};
if [[ "$file" == /*/* ]] ;then
#if long directory name.
# :FAILTHROUGH:
echo "$0: Executing pn.exe $file"
else
file="$(pwd)/$file";
fi
#check whether the filename starts with / if so replace it with appropriate prefix #
prefix="C:/cygwin/";
#check for the partterns starting with "/" #
echo $var | grep "^/*$"
if [[ "$?" -eq "0" ]] ;then
# check again whether parttern starts with /cygdrive/[a-z]/ parttern #
if [[ $file == /cygdrive/[a-z]/* ]] ; then
file=${file#/cygdrive/[a-z]/};
file="C:/"$file;
else
file="$prefix""$file";
fi
fi
#check for the appropriate file permissions #
# :TODO:
echo $file
exec "/cygdrive/c/Program Files (x86)/Programmer's Notepad/pn.exe" $file
因为我在我的程序中转换cygwin和windows之间的路径名并加载 pn.exe [程序员在Windows中的记事本]。所以我的问题是,
“[[”或“test”运算符有内置的正则表达式。 (以及 我在上面的程序中使用它们)。但是,如果我改变,为什么他们不在这里工作,
echo $var | grep "^/*$"
if [[ "$?" -eq "0" ]] ;then
到此,
if [[ "$file" == ^/*$ ]] ;then
这是什么原因?有没有解决方法?
我已经尝试过第二种方法[[ "$file" == ^/*$ ]]
,但它没有用。
然后,简单的谷歌搜索带到我这里:http://unix.com/shell-programming
如何找到有关[[operator>'test'命令的所有文档?我用过
man test
但是:(。如果有的话,哪个文档指定它对正则表达式使用的限制。
谢谢高级。
答案 0 :(得分:4)
首先,grep "^/*$"
仅匹配仅包含斜杠的路径,例如“/”,“///”,“////”。您可以使用grep "^/"
匹配以斜杠开头的路径。如果你想使用bash正则表达式:
var="/some"
#echo $var | grep "^/"
if [[ "$var" =~ ^/ ]] ;then
echo "yes"
fi