You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if make fails, build/lin folder is never created and
cd build/lin
fails, but
cd ../..
passes.
it will try to zip your whole hard drive, which is fine, but after it will run
ls | grep -v '\.zip$'| xargs rm
which will remove files in its current dir. this is most dangerous when it passes through your home folder, it ends at /
rm: cannot remove 'bin': Permission denied
rm: cannot remove 'boot': Is a directory
rm: cannot remove 'dev': Is a directory
rm: cannot remove 'etc': Is a directory
rm: cannot remove 'home': Is a directory
rm: cannot remove 'lib': Permission denied
rm: cannot remove 'lost+found': Is a directory
rm: cannot remove 'mnt': Is a directory
rm: cannot remove 'opt': Is a directory
rm: cannot remove 'proc': Is a directory
rm: cannot remove 'root': Is a directory
rm: cannot remove 'sbin': Permission denied
rm: cannot remove 'srv': Is a directory
rm: cannot remove 'sys': Is a directory
rm: cannot remove 'tmp': Is a directory
rm: cannot remove 'usr': Is a directory
rm: cannot remove 'var': Is a directory
The text was updated successfully, but these errors were encountered:
if make fails, build/lin folder is never created and
cd build/lin
fails, but
cd ../..
passes.
it will try to zip your whole hard drive, which is fine, but after it will run
which will remove files in its current dir. this is most dangerous when it passes through your home folder, it ends at /
The text was updated successfully, but these errors were encountered: