4
#!/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中的程序员记事本]一样。所以我的问题是,

  1. “[[”或“test”运算符内置了正则表达式。(以及我在上面的程序中使用它们)。但是如果我改变了,为什么他们不在这里工作,

    echo $var | grep "^/*$"
    if [[ "$?" -eq "0" ]] ;then
    

    对此,

    if [[ "$file" == ^/*$ ]] ;then
    

    这是什么原因?有什么解决方法吗?我已经尝试过第二种方法[[ "$file" == ^/*$ ]],但没有奏效。然后,简单的谷歌搜索给我带来了这里:http ://unix.com/shell-programming

  2. 如何找到有关 [[ 运算符或“测试”命令的所有文档?我用过 man test但是:(。如果有的话,哪个文件指定了它对正则表达式使用的限制。

4

1 回答 1

5

首先,grep "^/*$"将仅匹配仅包含斜杠的路径,例如“/”、“///”、“////”。您可以使用grep "^/"以匹配以斜杠开头的路径。如果你想使用 bash 正则表达式:

var="/some"
#echo $var | grep "^/"
if [[ "$var" =~ ^/ ]] ;then
  echo "yes"
fi
于 2012-08-27T12:43:15.210 回答