Shell Code Samples



Filters


How to install Home Brew in mac
Reshma | 5 years, 1 month
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
brew shell mac
How to find the port which is running and stop the process
Reshma | 5 years, 6 months
sudo lsof -i tcp:port //To find the port which is running

kill pid //kills the process which is r
shell kill port
Run shell files in javascript
harika | 6 years, 9 months
//JS Code
function runShellScript(){
    const process = require('child_process'); 
keep the function code inside the js file wherever you want to use. and keep the shell file provided
javascript shell node js
How to unzip tar file through cli
Reshma | 4 years, 12 months
tar -xvf filename.tgz
cli shell tar
How to uninstall docker from mac
Reshma | 5 years, 6 months
#!/bin/bash

# Uninstall Script
run it with sudo bash uninstall.sh
shell docker remove mac
Stop or remove all docker containers command
kishore_kumar | 5 years, 9 months
# docker ps -a -q  -> will return all ids of all containers
docker stop $(docker ps -a -q)
docker 
shell docker
get logs in oneline / readable form in git
harika | 5 years, 10 months
git log --oneline --graph --decorate
git shell
Rename or change git branch name
kishore_kumar | 6 years, 2 months
git branch -m <old-name> <new-name>
git push origin :<old-name> <new-name>
git shell
ashokrebel007
Gitlab tags
ashokrebel007 | 6 years, 1 month
git tag -a versionnumber -m "versionmessage"
git push origin versionnumber
git shell
Return a string from shell function
harika | 6 years, 1 month
#!/bin/sh

hello()
string shell
Prev Next