egrep -v ^# /path/to/config/file.conf | grep -v ^$
A command like this should show you the expiration status for all accounts defined in your /etc/passwd/
file
cut -f 1 -d: /etc/passwd | xargs -n 1 -I {} bash -c " echo {} ; chage -l {}"
// | |
// ViewControllerUtils.swift | |
// DesignMiami | |
// | |
// Created by Daryl Lukas on 11/24/21. | |
// | |
import Foundation | |
import UIKit |
egrep -v ^# /path/to/config/file.conf | grep -v ^$
A command like this should show you the expiration status for all accounts defined in your /etc/passwd/
file
cut -f 1 -d: /etc/passwd | xargs -n 1 -I {} bash -c " echo {} ; chage -l {}"
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
# Title | |
Crop Pest Monitoring/Detection | |
# Picture | |
media: http://www.deviantsart.com/2dllqr2.jpg | |
# Objective | |
A automated pest monitoring system using a webcam and a Raspberry Pi | |
# Duration | |
1 Day | |
# Age Group | |
all |
# Imports | |
import pygame | |
import pygame.camera | |
import time | |
import dropbox | |
# Developer Keys | |
# Get your app key and secret from the Dropbox developer website | |
DROPBOX_APIKEY = '<API-KEY>' | |
DROPBOX_APPSECRET = '<APP-SECRET>' |