fileinfo/README.md

23 lines
575 B
Markdown
Raw Normal View History

2024-08-20 19:41:53 +02:00
<h1>fileinfo</h1>
2024-08-20 19:39:18 +02:00
A simple C++ program that displays information about files and folders.
2024-08-20 20:07:33 +02:00
<h2>Installation</h2>
First, install libmagic-dev:<br>
<pre>
sudo apt install libmagic-dev
</pre><br>
Now, compile the source code. <b>Note the <code>-lmagic</code> at the end!</b><br>
<pre>
g++ <path/to/source.cpp> -lmagic -o fileinfo
</pre><br>
And finally, copy that executable to /usr/local/bin folder.<br>
<pre>
sudo cp fileinfo /usr/local/bin/
</pre>
2024-08-20 19:41:53 +02:00
<h2>Usage</h2>
2024-08-20 19:42:13 +02:00
<pre>
2024-08-20 19:41:53 +02:00
./a.out [args] filename ...<br>
Args:<br>
-A Output absolute path<br>
-E Do not show emojis<br>
2024-08-20 19:42:13 +02:00
</pre>