获取文件的编码file.encoding
file -bi test.sh
text/plain; charset=utf-8
file -bi test.sh
text/plain; charset=utf-8
input="http://aa:bbb@192.168.1.1/"
escaped_input=$(echo "$input" | sed 's///\//g')
echo ${escaped_input}
sed -i 'old_line/c$newline' file_path
1、按Esc
键切换到命令模式。
2、按: (冒号),光标将移动到屏幕的左下角。 输入set nu
或 set number
,然后按回车Enter
即可 。
查找当前目录及所有子目录文件路径
find . -exec ls -dl {} ; | awk '{print $3, $4, $9}'