Unix Commands

From Steak Wiki
Revision as of 05:29, 5 January 2021 by Adminguy (talk | contribs) (Created page with "some years of gnulinux, commands i have found easy to understand, yet still useful find . -print | grep <somefile> find . -printf '$TY-%Tm-%Td %p\n' | grep 2020-12-29 sta...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

some years of gnulinux, commands i have found easy to understand, yet still useful


find . -print | grep <somefile>
find . -printf '$TY-%Tm-%Td %p\n' | grep 2020-12-29
stat /files/* | grep -A5 <somenameoffile>  | awk 'xor(/File/,/Modify/)' > /tmp/dates
sed -e 's/original/new/g' -i editfileinplace.txt

edit .bashrc

alias hs="history"

WIP