I saw this recently.
If you need to get any book on the internet, type the name of the book followed by “doctype:pdf” and you’ll get the book in pdf format
For example, Purple Hibiscus doctype:pdf
I wanna marry into a funcional family... when they have cookouts, game nights, holiday dinners and bday parties...I wanna be able to go get breakfast with my mother in law & go shopping with their siblings. I don't want it to be just "US" I want a family that's oriented.
Can’t rate your opinions about Trump’s statement if you live in Lagos and Abuja. When it’s time to talk about Police brutality, we will call you but for now? Go and sleep, you know nothing about our pain.
You've been using Linux for years. But you're still doing things the hard way.
Here are 7 commands that'll save you hours:
1. Forgot to add sudo?
- Type `sudo !!`
- It repeats your last command with sudo. No retyping.
2. Just created a file?
- Use `vim !$` to open it.
- The !$ grabs the last thing you typed.
3. Can't remember that command?
- Press Ctrl + R and start typing.
- It searches your entire command history.
4. Made a typo in a long command?
- Type `fc`
- It opens your last command in an editor. Fix it and save. Done.
5. Jumping between folders?
- Use pushd /some/path to save a location.
- Use popd to go back.
- No more typing long paths over and over.
6. Want to see your folder structure?
- Type `tree -L 2`
- Shows everything like an actual tree. Much cleaner than ls.
7. Need to go back to your last folder?
- Just type cd -
- Takes you right back. Simple.
Bonus:
Stop writing `cat file | grep something`
- Just write `grep something file`
- Does the same thing. Way cleaner.
I've used Linux for years. These small commands save me time every single day.
Bookmark this. Your future self will thank you.