Difference between revisions of "Bash Snippets"
From Jay's Cafe' Wiki
Jayctheriot (talk | contribs) (Created page with "Filtering the fields out of the user-add.php page of the BRMG project. <pre> grep fld_ sandbox/git/BRMR0708/BRMR/user-add.php | awk -F "fld_" '{print "fld_"$2}' brmr_flds.dat...") |
(No difference)
|
Latest revision as of 16:54, 11 August 2020
Filtering the fields out of the user-add.php page of the BRMG project.
grep fld_ sandbox/git/BRMR0708/BRMR/user-add.php | awk -F "fld_" '{print "fld_"$2}' brmr_flds.dat | awk -F "\"| |'|;|,|=|)" '{print $1}' | sort | uniq > brmg_flds.list