This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Name: listusers.bash | |
# Purpose: List all normal user and system accounts in the system. Tested on RHEL / Debian Linux | |
# Author: Vivek Gite <www.cyberciti.biz>, under GPL v2.0+ | |
# ----------------------------------------------------------------------------------- | |
_l="/etc/login.defs" | |
_p="/etc/passwd" | |
## get mini UID limit ## | |
l=$(grep "^UID_MIN" $_l) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var li = document.querySelectorAll("li"); | |
var pattern = /(environment pin for|jenkins backup of chef-server|jenkins version bump)/; | |
for (var i=0; i<li.length; i++){ | |
if (li[i].textContent.match(pattern)) { | |
li[i].remove() | |
} | |
} |