MOTOSHARE 🚗🏍️
Turning Idle Vehicles into Shared Rides & Earnings

From Idle to Income. From Parked to Purpose.
Earn by Sharing, Ride by Renting.
Where Owners Earn, Riders Move.
Owners Earn. Riders Move. Motoshare Connects.

With Motoshare, every parked vehicle finds a purpose. Owners earn. Renters ride.
🚀 Everyone wins.

Start Your Journey with Motoshare

Understanding cmd: The Command Line Interface of Windows

Introduction The Command Prompt, often referred to as cmd, is a powerful, text-based interface for interacting with the operating system. While modern computing tends to rely heavily on graphical user interfaces (GUIs), the command-line interface (CLI) remains an essential tool, especially for system administrators, developers, and advanced users who need greater control over their operating … Read more

My Shell Script Usage Collection

sgadmin created the topic: My Shell Script Usage Collection Count Total number of files in Directory and Subdirectory > find . -type f | wc –l Count Specific extention files in Directory and Subdirectory > find . -type f -name \*.mnp |wc –l Count only Directory > find . -type d | wc –l

Shell script to run x times

rajeshkumar created the topic: shell script to run x times Problem: First i need to cd to this directory $SWDIR/util Second i need to run the following either 4 times or 20 times ./swadm add_process 1 BG Y how can i put this in a script Regards, Rajesh Kumar Twitt me @ twitter.com/RajeshKumarIn rajeshkumar replied … Read more

Whats the difference between running a shell scrip

scmuser created the topic: Whats the difference between running a shell scrip Whats the difference between running a shell script as ./script.sh and sh script.sh have a script that looks like this #!/bin/bash function something() { echo “hello world!!” } something | tee logfile I have set the execute permission on this file and when … Read more

Shell script for recursive delete required.

rajeshkumar created the topic: Shell script for recursive delete required. #!/bin/bash if [ $# -ne 1 -o ! -d “$1” ] then echo “Usage $0 dirname” exit 1 fi find “$1” -type f -print | while read file do dir=$(dirname “$file”) dname=$(basename “$dir”) fname=$(basename “$file”) [ “$dname” = “$fname” ] && rm “$file” done Regards, … Read more

Shell Script Run in Background

rajeshkumar created the topic: shell script run in background I wanted to run a particular shell program in a background and it should not be dependent on terminal session of putty or telnet? Just finding solution? Regards, Rajesh Kumar Twitt me @ twitter.com/RajeshKumarIn rajeshkumar replied the topic: Re:shell script run in background i found 2 … Read more

How to Restore The Dump File using Shell Scripting

scmuser created the topic: how to restore the dump file using shell scripting I have created a script file to dump the application files using the following script Code ============= #!/bin/bash #Full Day Backup Script #application folders backup now=$(date +”%d-%m-%Y”) #use 1 instead of 0 which is incremental backup dump -0f $now /var/www/html/* ============= using … Read more