Browse Source

Update README.MD

MoeClub 5 years ago
parent
commit
1172025737
1 changed files with 2 additions and 1 deletions
  1. 2 1
      Note/README.MD

+ 2 - 1
Note/README.MD

@@ -8,5 +8,6 @@ sudo sh -c "sed -ie \"/\/usr\/local\/bin\/exec/d\" /etc/sudoers"
 
 # Run besttrace for linux
 ```
-command -v unzip >/dev/null 2>&1; [ $? -eq 0 ] && { command -v wget >/dev/null 2>&1; [ $? -eq 0 ] && { [ `getconf LONG_BIT` == 32 ] && filename="besttrace32" || filename="besttrace";wget --no-check-certificate -qO /tmp/besttrace4linux.zip https://cdn.ipip.net/17mon/besttrace4linux.zip; unzip -o /tmp/besttrace4linux.zip "$filename"; [ "$filename" != "besttrace" ] && mv -f "$filename" besttrace; chmod 755 besttrace; }; }
+command -v unzip >/dev/null 2>&1; [ $? -eq 0 ] && { command -v wget >/dev/null 2>&1; [ $? -eq 0 ] && { [ `getconf LONG_BIT` == 32 ] && filename="besttrace32" || filename="besttrace"; wget --no-check-certificate -qO /tmp/besttrace4linux.zip https://cdn.ipip.net/17mon/besttrace4linux.zip && unzip -o /tmp/besttrace4linux.zip "$filename" && { chmod 755 "$filename" && [ "$filename" != "besttrace" ] && mv -f "$filename" besttrace && echo "file: $filename --> besttrace" || echo "file: besttrace"; } || echo "Download error"; } || echo "Not found wget" ; } || echo "Not found unzip";
+
 ```