Horje
bash toggle script Code Example
bash toggle script
#!/bin/sh
# This shell script is PUBLIC DOMAIN. You may do whatever you want with it.

TOGGLE=$HOME/.toggle

if [ ! -e $TOGGLE ]; then
    touch $TOGGLE
    command1
else
    rm $TOGGLE
    command2
fi




Shell

Related
como usar o cmd do git Code Example como usar o cmd do git Code Example
how to permantely install library in collab Code Example how to permantely install library in collab Code Example
ifconfig wlan0 hw ether not working Code Example ifconfig wlan0 hw ether not working Code Example
Crake wifi Code Example Crake wifi Code Example
changer affichage kali linux Code Example changer affichage kali linux Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11