1. 程式人生 > >常用shell命令集合

常用shell命令集合

1、檔案/檔案加許可權修改所屬使用者組+使用者

chown -R www:www data

只修改使用者

chgrp -R www data

2、檔案變更為可執行

chmod +x file

3、 [[email protected] learn_shell]$ ./a.sh

  bash: ./a.sh: /bin/bash^M: bad interpreter: No such file or directory

  [[email protected] learn_shell]$

  這是檔案格式錯誤,可用vi開啟 a.sh這個檔案,用 :set ff 或者 set fileformat 檢視一下

  解決 方法一、在vi底部模式下,直接執行 : set fileformat =unix 

    方法二、 直接執行 set -i "/\r//"  (在go中 "  \  需要轉義 )