我有一个脚本,我想禁止命令行中的一些命令(shutdown、rm、init)。但它似乎不起作用,因为它似乎匹配所有的东西:
我怎么能那样做?

[root@devnull hunix]# cat p.sh
#!/bin/bash

string=$1;

if [[ "$string" =~ [*shut*|*rm*|*init*] ]]
then
  echo "command not allowed!";
  exit 1;
fi
[root@devnull hunix]# ./p.sh shutdown
command not allowed!
[root@devnull hunix]# ./p.sh sh
command not allowed!
[root@devnull hunix]# ./p.sh rm
command not allowed!
[root@devnull hunix]# ./p.sh r
command not allowed!
[root@devnull hunix]#

最佳答案

你把壳牌公司与ReGEX混为一谈。
正确的regex是:

if [[ "$string" =~ ^(shut|rm|init) ]]; then
  echo "command not allowed!"
  exit 1
fi

10-07 21:45