Setedit - Command
sed 's/old_password/new_password/' config.txt
This command deletes lines 10 to 20 from file.txt . Setedit Command
#!/system/bin/sh CURRENT=$(settings get global airplane_mode_on) if [ "$CURRENT" -eq 1 ]; then settings put global airplane_mode_on 0 echo "Airplane mode OFF" else settings put global airplane_mode_on 1 echo "Airplane mode ON" fi sed 's/old_password/new_password/' config
sed -i 's/old_password/new_password/' config.txt Setedit Command