Skip to content

Instantly share code, notes, and snippets.

View mehdiMj-ir's full-sized avatar
🐧

mehdiMj mehdiMj-ir

🐧
View GitHub Profile
@mehdiMj-ir
mehdiMj-ir / .bashrc
Last active November 27, 2025 12:36
Starship config
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
@mehdiMj-ir
mehdiMj-ir / Install Druid preferred packages.
Last active November 25, 2023 14:44
developer-ansible-playbook.yml
---
- name: Install multiple packages 4 Druid
hosts: localhost
become: true
tasks:
- name: Update apt cache
ansible.builtin.apt:
update_cache: true
#!/bin/bash
# kinsing deleteing here
PID=$(pidof kinsing)
echo "$PID"
kill -9 $PID
# /tmp/kinsing deleteing here (Some times it will run /tmp path)
PID=$(pidof /tmp/kinsing)