#!/bin/bash - no such file or directory
2021-10-311、head -1 yourscript | od -c
0000000 # ! / b i n / b a s h \r \n
2、$dos2unix yourscript
或者
$cp script _p4 && tr -d '\r' < _p4 > script && rm _p4
3、正确的结果是:
0000000 # ! / b i n / b a s h \n
分类:Linux | 标签: |