在style.css

时间:2017-10-16 15:51:59

标签: html css bash

所以我想在我的网站上创建200个页面,为此我想在style.css中添加几行。我想在文件末尾添加以下行

.wordpress
        width: 100%
        position: relative
        font-size: 22px
        color: #1a1a1a
        font-weight: 600
        min-height: 297px
        line-height: 22px
        background: url(../images/wordpress.png) no-repeat left top

我想用脚本替换文件名。有人可以指导我,我该怎么办?我尝试了以下技巧,但它没有工作

for i in $(cat list1.txt) ; do echo  .$i{\ width: 100%;\ position: relative;\ font-size: 22px;\ color: #1a1a1a;\        font-weight: 600;\ min-height: 297px;\ line-height: 22px;\ background: url(../images/$i.png) no-repeat left top;\} >>  list3.txt ; done

还有其他办法吗?我在list1.txt文件中有所有文件名

1 个答案:

答案 0 :(得分:0)

我稍微更改了你的代码。现在它应该工作:

for i in $(cat list1.txt) ; do 
    echo  ".$i{ 
        width: 100%; 
        position: relative; 
        font-size: 22px; 
        color: #1a1a1a;        
        font-weight: 600; 
        min-height: 297px; 
        line-height: 22px; 
        background: url(../images/$i.png) no-repeat left top;
        }" >>  list3.txt ; done;

你应该有这样的list1.txt:

wordpress
joomla

(由新线分开,没有.png)