sed-e'/./{h;$!d、 }'-e'x公司/创建表`suck\t`/!d类;q'bak.sql;这个命令是如何工作的?

yzuktlbb  于 2021-06-17  发布在  Mysql
关注(0)|答案(1)|浏览(289)

关闭。这个问题需要细节或清晰。它目前不接受答案。
**想改进这个问题吗?**通过编辑这个帖子来添加细节并澄清问题。

两年前关门了。
改进这个问题
bak.sql的内容是:

1  -- MySQL dump 10.14  Distrib 5.5.60-MariaDB, for Linux (x86_64)
 2  --
 3  -- Host: localhost    Database: suck_db
 4  -- ------------------------------------------------------
 5  -- Server version   5.5.60-MariaDB
 6  
 7  /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
 8  /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
 9  /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
10  /*!40101 SET NAMES utf8 */;
11  /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
12  /*!40103 SET TIME_ZONE='+00:00' */;
13  /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
14  /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
15  /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
16  /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
17  
18  --
19  -- Current Database: `suck_db`
20  --
21  
22  CREATE DATABASE /*!32312 IF NOT EXISTS*/ `suck_db` /*!40100 DEFAULT CHARACTER SET latin1 */;
23  
24  USE `suck_db`;
25  
26  --
27  -- Table structure for table `suck_t`
28  --
29  
30  DROP TABLE IF EXISTS `suck_t`;
31  /*!40101 SET @saved_cs_client     = @@character_set_client */;
32  /*!40101 SET character_set_client = utf8 */;
33  CREATE TABLE `suck_t` (
34    `id` int(10) NOT NULL AUTO_INCREMENT,
35    `name` varchar(30) NOT NULL DEFAULT '',
36    `age` tinyint(4) NOT NULL DEFAULT '0',
37    PRIMARY KEY (`id`)
38  ) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=latin1;
39  /*!40101 SET character_set_client = @saved_cs_client */;
40  
41  --
42  -- Dumping data for table `suck_t`
43  --
44  
45  LOCK TABLES `suck_t` WRITE;
46  /*!40000 ALTER TABLE `suck_t` DISABLE KEYS */;
47  INSERT INTO `suck_t` VALUES (1,'tom1',11),(2,'tom2',11),(3,'tom3',11),(4,'tom4',11),(5,'tom5',11),(6,'tom5',11),(7,'tom5',11),(8,'tom5',11),(9,'tom5',11),(10,'tom5',11),(11,'tom5',11),(12,'tom5',11),(13,'tom5',11),(14,'tom5',11),(15,'tom5',11),(16,'tom5',11),(17,'tom5',11),(18,'tom5',11),(19,'tom5',11),(20,'tom5',11),(21,'tom5',11),(22,'tom5',11),(23,'tom5',11),(24,'tom5',11),(25,'tom5',11),(26,'tom5',11),(27,'tom5',11);
48  /*!40000 ALTER TABLE `suck_t` ENABLE KEYS */;
49  UNLOCK TABLES;
50  /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
51  
52  /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
53  /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
54  /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
55  /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
56  /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
57  /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
58  /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
59  
60  -- Dump completed on 2018-12-12  1:02:27

当我跑的时候

sed -e '/./{H;$!d;}' -e 'x;/CREATE TABLE `suck_t`/!d;q' bak.sql

输出为:

DROP TABLE IF EXISTS `suck_t`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `suck_t` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `name` varchar(30) NOT NULL DEFAULT '',
  `age` tinyint(4) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

此命令的目的是从 bak.sql 文件。
我真的很困惑,它是怎么工作的?
以及 {H;$!d;} ,为什么要有牙套?有支架和没有支架有什么区别?
我的理解是,在“/./{h;$”之后!d、 }'模式空间包括10个空行和最后一行,保持空间包括所有非空行。即
图案空间为:

1  
 2  
 3  
 4  
 5  
 6  
 7  
 8  
 9  
10  
11  -- Dump completed on 2018-12-12  1:02:27

等待空间为:

1  -- MySQL dump 10.14  Distrib 5.5.60-MariaDB, for Linux (x86_64)
 2  --
 3  -- Host: localhost    Database: suck_db
 4  -- ------------------------------------------------------
 5  -- Server version   5.5.60-MariaDB
 6  /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
 7  /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
 8  /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
 9  /*!40101 SET NAMES utf8 */;
10  /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
11  /*!40103 SET TIME_ZONE='+00:00' */;
12  /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
13  /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
14  /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
15  /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
16  --
17  -- Current Database: `suck_db`
18  --
19  CREATE DATABASE /*!32312 IF NOT EXISTS*/ `suck_db` /*!40100 DEFAULT CHARACTER SET latin1 */;
20  USE `suck_db`;
21  --
22  -- Table structure for table `suck_t`
23  --
24  DROP TABLE IF EXISTS `suck_t`;
25  /*!40101 SET @saved_cs_client     = @@character_set_client */;
26  /*!40101 SET character_set_client = utf8 */;
27  CREATE TABLE `suck_t` (
28    `id` int(10) NOT NULL AUTO_INCREMENT,
29    `name` varchar(30) NOT NULL DEFAULT '',
30    `age` tinyint(4) NOT NULL DEFAULT '0',
31    PRIMARY KEY (`id`)
32  ) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=latin1;
33  /*!40101 SET character_set_client = @saved_cs_client */;
34  --
35  -- Dumping data for table `suck_t`
36  --
37  LOCK TABLES `suck_t` WRITE;
38  /*!40000 ALTER TABLE `suck_t` DISABLE KEYS */;
39  INSERT INTO `suck_t` VALUES (1,'tom1',11),(2,'tom2',11),(3,'tom3',11),(4,'tom4',11),(5,'tom5',11),(6,'tom5',11),(7,'tom5',11),(8,'tom5',11),(9,'tom5',11),(10,'tom5',11),(11,'tom5',11),(12,'tom5',11),(13,'tom5',11),(14,'tom5',11),(15,'tom5',11),(16,'tom5',11),(17,'tom5',11),(18,'tom5',11),(19,'tom5',11),(20,'tom5',11),(21,'tom5',11),(22,'tom5',11),(23,'tom5',11),(24,'tom5',11),(25,'tom5',11),(26,'tom5',11),(27,'tom5',11);
40  /*!40000 ALTER TABLE `suck_t` ENABLE KEYS */;
41  UNLOCK TABLES;
42  /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
43  /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
44  /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
45  /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
46  /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
47  /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
48  /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
49  /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
50  -- Dump completed on 2018-12-12  1:02:27

在执行'x'之后,保持空间和模式空间被切换,因此模式空间包括所有非空行,保持空间包括一堆空行和最后一行。
图案空间为:

1  -- MySQL dump 10.14  Distrib 5.5.60-MariaDB, for Linux (x86_64)
 2  --
 3  -- Host: localhost    Database: suck_db
 4  -- ------------------------------------------------------
 5  -- Server version   5.5.60-MariaDB
 6  /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
 7  /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
 8  /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
 9  /*!40101 SET NAMES utf8 */;
10  /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
11  /*!40103 SET TIME_ZONE='+00:00' */;
12  /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
13  /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
14  /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
15  /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
16  --
17  -- Current Database: `suck_db`
18  --
19  CREATE DATABASE /*!32312 IF NOT EXISTS*/ `suck_db` /*!40100 DEFAULT CHARACTER SET latin1 */;
20  USE `suck_db`;
21  --
22  -- Table structure for table `suck_t`
23  --
24  DROP TABLE IF EXISTS `suck_t`;
25  /*!40101 SET @saved_cs_client     = @@character_set_client */;
26  /*!40101 SET character_set_client = utf8 */;
27  CREATE TABLE `suck_t` (
28    `id` int(10) NOT NULL AUTO_INCREMENT,
29    `name` varchar(30) NOT NULL DEFAULT '',
30    `age` tinyint(4) NOT NULL DEFAULT '0',
31    PRIMARY KEY (`id`)
32  ) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=latin1;
33  /*!40101 SET character_set_client = @saved_cs_client */;
34  --
35  -- Dumping data for table `suck_t`
36  --
37  LOCK TABLES `suck_t` WRITE;
38  /*!40000 ALTER TABLE `suck_t` DISABLE KEYS */;
39  INSERT INTO `suck_t` VALUES (1,'tom1',11),(2,'tom2',11),(3,'tom3',11),(4,'tom4',11),(5,'tom5',11),(6,'tom5',11),(7,'tom5',11),(8,'tom5',11),(9,'tom5',11),(10,'tom5',11),(11,'tom5',11),(12,'tom5',11),(13,'tom5',11),(14,'tom5',11),(15,'tom5',11),(16,'tom5',11),(17,'tom5',11),(18,'tom5',11),(19,'tom5',11),(20,'tom5',11),(21,'tom5',11),(22,'tom5',11),(23,'tom5',11),(24,'tom5',11),(25,'tom5',11),(26,'tom5',11),(27,'tom5',11);
40  /*!40000 ALTER TABLE `suck_t` ENABLE KEYS */;
41  UNLOCK TABLES;
42  /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
43  /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
44  /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
45  /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
46  /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
47  /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
48  /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
49  /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
50  -- Dump completed on 2018-12-12  1:02:27

等待空间为:

1  
 2  
 3  
 4  
 5  
 6  
 7  
 8  
 9  
10  
11  -- Dump completed on 2018-12-12  1:02:27

在“/create table\t/”之后!如果执行d',则删除模式空间中除包含create table表的行以外的所有行。所以输出是:

27  CREATE TABLE `suck_t` (

我错在哪里?

xam8gpfp

xam8gpfp1#

sed命令的作用如下:


# If a line is non-empty

/./ {
    # Append line to hold space
    H
    # For every line but the last of the file, delete pattern space (print
    # nothing) and start next cycle
    $! d
}

# If we are here, the line was either empty or is the last line

# Swap pattern space and hold space

x

# If the pattern space does not match "CREATE TABLE `suck_t`, delete it and

# start new cycle

/CREATE TABLE `suck_t`/! d

# If we are here, the pattern space matches the "CREATE TABLE" pattern from

# above

# Print current line and quit

q

换言之:它将打印包含 CREATE TABLEsuck_t`` . 由于输入文件只包含一个包含该字符串的段落,因此实际输出如下:

LOCK TABLES `suck_t` WRITE; /*!40000 ALTER TABLE `suck_t` DISABLE KEYS

* /; INSERT INTO `suck_t` VALUES (1,'tom1',11),(2,'tom2',11),(3,'tom3',11),(4,'tom4',11),(5,'tom5',11),(6,'tom5',11),(7,'tom5',11),(8,'tom5',11),(9,'tom5',11),(10,'tom5',11),(11,'tom5',11),(12,'tom5',11),(13,'tom5',11),(14,'tom5',11),(15,'tom5',11),(16,'tom5',11),(17,'tom5',11),(18,'tom5',11),(19,'tom5',11),(20,'tom5',11),(21,'tom5',11),(22,'tom5',11),(23,'tom5',11),(24,'tom5',11),(25,'tom5',11),(26,'tom5',11),(27,'tom5',11); /*!40000 ALTER TABLE `suck_t` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

空行( H 插入一行)和从底部开始的第三段的两行。
输出中包含的换行符既不存在于输入中,也不由sed脚本引入。
至于你关于大括号的问题:它们将命令分组。如果我说

/./H;$!d

这意味着“每行匹配 . ,做 H ; 然后,删除每一行,除非它是最后一行”。
另一方面,

/./{H;$!d}

表示“每行匹配” . ,做 H 并删除它,除非它是最后一行”。
第一个命令将删除一个空行,因为 $!d 为每一行运行;第二个命令将完全跳过空行。

相关问题