War on terror from the UNIX shell point of view

  • Two Factor Authentication is now available on BeyondUnreal Forums. To configure it, visit your Profile and look for the "Two Step Verification" option on the left side. We can send codes via email (may be slower) or you can set up any TOTP Authenticator app on your phone (Authy, Google Authenticator, etc) to deliver codes. It is highly recommended that you configure this to keep your account safe.

geogob

Koohii o nomimasu ka?
... yeah i know, it's a bit geeky. Still funny though :)


$ cd /middle_east
$ ls
Afghanistan Iraq Libya Saudi_Arabia UAE
Algeria Israel Morrocco Sudan Yemen
Bahrain Jordan Oman Syria
Egypt Kuwait Palestine Tunisia
Iran Lebanon Qatar Turkey

$ cd Afghanistan
$ ls
bin Taliban
$ rm Taliban
rm: Taliban is a directory
$ cd Taliban
$ ls
soldiers
$ rm soldiers
$ cd ..
$ rmdir Taliban
rmdir: directory "Taliban": Directory not empty
$ cd Taliban
$ ls -a
. .. .insurgents
$ chown -R USA .*
chown: .insurgents: Not owner
$ cd ..
$ su
Password: *******
# mv Taliban /tmp
# exit
$ ls
bin
$ cd bin
$ ls
laden
$ cd ..
$ rm -r bin/laden
bin/laden: No such file or directory
$ find / -name laden
$
$ su
Password: *******
# mv bin /tmp
# exit
$ pwd
/middle_east/Afghanistan
$ cd ..
$ ln -s /Bad_Guys/Al_Qaeda Iraq/.
ln: cannot create Iraq/Al_Qaeda: Permission denied
$ su
Password:*******
# ln -s /Bad_Guys/Al_Qaeda Iraq/.
# cd Iraq/Al_Qaeda
Al_Qaeda: does not exist
# rm Iraq/Al_Qaeda
# mkfile 100g Iraq/Al_Qaeda
mkfile: No space left on device
# rm Iraq/Al_Qaeda
# mkfile 1b Iraq/Al_Qaeda
# chown -R USATongueroof Iraq/Al_Qaeda
#exit
$ cd Iraq
$ ls
saddam
$ ls
saddam
$ ls
saddam
$ ls -a
. .. saddam
$ find / -name [Ww][Mm][Dd]
/korea/north/wMd
$ wall Propaganda.txt
Broadcast Message from USA (pts/1) on USS_Abraham_Lincoln Th May 1st
Mission Accomplished!
$ rm saddam
saddam: No such file or directory
$ find / -name saddam
/var/opt/dictators/spiderhole/saddam
$ wall NewsWorthy.txt
Broadcast Message from USA (pts/1) on Time.Magazine Sat Dec 13
We Got Him!
$ mv /var/opt/dictators/spiderhole/saddam /opt/jail
$ cd /opt/USA
$ cp -Rp Democracy /middle_east/Iraq
$ cd /middle_east/Iraq/Democracy
$ ./install
Install Error: Install failed. See install_log for details.
$ more install_log
Installed failed!
Prerequisite packages missing
Conflicting package Wahhabism found in /midde_east/Saudi_Arabia
Packages Church and State must be installed separately
File System /PeakOil nearing capacity
Please read the install guide to properly plan your installation.
$
 

Burger

Lookin' down the iron-sights...
Aug 9, 2004
319
0
0
36
Brisbane, Australia
What are you doing??? Go and work on IMT stuff... Stop waisting your time.

As my programming knowledge is very limited (if... then... else statements) it's all double-dutch to me, but still is understandable. Interesting...

-Re-Format c:\terrorism
If only it was that simple.
 

Zundfolge

New Member
Dec 13, 1999
5,703
0
0
54
USA
Burger, that's MSDOS


easiest solution (and what I think you're trying to do) is:

$ sudo rmdir /middle_east
Password: *******


:D
 

unixman

[pthread] The Clan of One
Apr 8, 2001
199
0
0
43
Bakersfield, CA
www.stridernet.ath.cx
Zundfolge said:
Burger, that's MSDOS


easiest solution (and what I think you're trying to do) is:

$ sudo rmdir /middle_east
Password: *******


:D

Won't work. You can't delete a directory that is non-empty. However, you can do a recursive removal using rm -r /middle_east. You have now been canonicalized.
 
Last edited: