As long as the argument order for cat matches the original order of the three linked CSS files in the HTML file, the cat method should work as expected.
So give the floor ..
<link href="css/one.css" rel="stylesheet" type="text/css" media="all"> <link href="css/two.css" rel="stylesheet" type="text/css" media="all"> <link href="css/three.css" rel="stylesheet" type="text/css" media="all">
.. the following connection.
cat css/one.css css/two.css css/three.css > css/all.css
.. together will be the following link ..
<link href="css/all.css" rel="stylesheet" type="text/css" media="all">
.. must be 100% identical.
knorv
source share