⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 perms.test

📁 linux下各种patch的管理工具
💻 TEST
字号:
	$ rm -rf d	$ umask 022	$ mkdir -p d/patches	$ cd d	$ echo foo > foo	$ chmod 704 foo	$ ls -l foo | awk '{ print $1,$NF }'	> -rwx---r-- foo	$ quilt new test.diff	> Patch %{P}test.diff is now on top	$ quilt add foo	> File foo added to patch %{P}test.diff	$ ls -l foo | awk '{ print $1,$NF }'	> -rwx---r-- foo	$ echo foobar > foo	$ quilt refresh	> Refreshed patch %{P}test.diff	$ quilt new test2.diff	> Patch %{P}test2.diff is now on top	$ quilt add foo	> File foo added to patch %{P}test2.diff	$ chmod 702 foo	$ ls -l foo | awk '{ print $1,$NF }'	> -rwx----w- foo	$ echo foobaz > foo	$ quilt refresh	> Refreshed patch %{P}test2.diffThe permissions of foo as they were in patch2 are lost here (there is noway to preserve them in the patch). Quilt will restore the permissions ofthe backup file.	$ quilt pop -q	> Removing patch %{P}test2.diff	> Now at patch %{P}test.diff	$ ls -l foo | awk '{ print $1,$NF }'	> -rwx---r-- foo	$ quilt push -q	> Applying patch %{P}test2.diff	> Now at patch %{P}test2.diff	$ ls -l foo | awk '{ print $1,$NF }'	> -rwx---r-- foo	$ quilt pop -q	> Removing patch %{P}test2.diff	> Now at patch %{P}test.diff	$ quilt remove foo	> File foo removed from patch %{P}test.diff	$ ls -l foo | awk '{ print $1,$NF }'	> -rwx---r-- foo	$ cd ..	$ rm -rf d

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -